| 1234567891011121314151617181920212223242526 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.User;
- import com.goafanti.user.bo.UserDownLoadBo;
- import com.goafanti.user.bo.UserPageHomeBo;
- public interface UserMapper {
- int deleteByPrimaryKey(String id);
- int insert(User record);
- int insertSelective(User record);
- User selectByPrimaryKey(String id);
- int updateByPrimaryKeySelective(User record);
- int updateByPrimaryKey(User record);
- User selectByMobieAndType(String mobile, Integer type);
- UserPageHomeBo selectUserPageHomeBoByUserId(String uid);
- UserDownLoadBo selectUserDownLoadBoByUserId(String id);
- }
|