123456789101112131415161718192021 |
- package com.yihu.platform.service;
- import com.coreframework.ioc.By;
- import com.yihu.platform.service.impl.UserMappingServiceImpl;
- /**
- *
- * ClassName: IUserMappingService
- * @Description: TODO
- * @author houzq
- * @Company www.yihu.com
- * @date 2017-8-31 下午06:58:12
- */
- @By(UserMappingServiceImpl.class)
- public interface IUserMappingService {
-
- public String getUserAgent(String userId) throws Exception;
-
- public Integer getUserType4UserMapping(String userId) throws Exception;
- }
|