c1498bf7028853e474d670e059ca3c54f86c3512.svn-base 502 B

123456789101112131415161718192021
  1. package com.yihu.platform.service;
  2. import com.coreframework.ioc.By;
  3. import com.yihu.platform.service.impl.UserMappingServiceImpl;
  4. /**
  5. *
  6. * ClassName: IUserMappingService
  7. * @Description: TODO
  8. * @author houzq
  9. * @Company www.yihu.com
  10. * @date 2017-8-31 下午06:58:12
  11. */
  12. @By(UserMappingServiceImpl.class)
  13. public interface IUserMappingService {
  14. public String getUserAgent(String userId) throws Exception;
  15. public Integer getUserType4UserMapping(String userId) throws Exception;
  16. }