package com.goafanti.common.dao; import java.util.List; import com.goafanti.common.model.User; import com.goafanti.user.bo.OrgListBo; 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); List selectUserByAid(String aid); }