UserMapper.java 636 B

1234567891011121314151617181920212223242526
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.User;
  3. import com.goafanti.user.bo.UserDownLoadBo;
  4. import com.goafanti.user.bo.UserPageHomeBo;
  5. public interface UserMapper {
  6. int deleteByPrimaryKey(String id);
  7. int insert(User record);
  8. int insertSelective(User record);
  9. User selectByPrimaryKey(String id);
  10. int updateByPrimaryKeySelective(User record);
  11. int updateByPrimaryKey(User record);
  12. User selectByMobieAndType(String mobile, Integer type);
  13. UserPageHomeBo selectUserPageHomeBoByUserId(String uid);
  14. UserDownLoadBo selectUserDownLoadBoByUserId(String id);
  15. }