public interface IPeopleBiz
extends net.mingsoft.base.biz.IBaseBiz
| 限定符和类型 | 方法和说明 |
|---|---|
void |
deletePeople(int id)
根据用户ID删除用户实体,用于有子类的删除操作
|
void |
deletePeople(int[] peopleIds)
批量删除用户
|
PeopleEntity |
getByPeople(PeopleEntity people,
int appId)
更具用户实体获取用户信息,
|
int |
getCountByAppIdAndMap(int appId,
Map whereMap)
根据应用id和其他查询条件查询用户总数
|
int |
getCountByDate(String peopleDateTime,
Integer appId)
根据注册时间和应用id查询总数
|
PeopleEntity |
getEntityByCode(String userName,
String peopleCode,
int appId)
根据用户名(帐号,手机,邮箱)和验证码查询用户信息开始
|
PeopleEntity |
getEntityByMailOrPhone(String userName,
int appId)
根据用户用户名查询用户实体
|
PeopleEntity |
getEntityByUserName(String userName,
int appId)
根据用户用户名查询用户实体
|
List<PeopleEntity> |
query(int appId,
Map where)
用户查询
|
List<PeopleEntity> |
queryByAppIdAndMap(int appId,
Map whereMap)
已过时。
|
int |
queryCountByAppId(int appId)
已过时。
|
List<PeopleEntity> |
queryPageListByAppId(int appId)
已过时。
|
int |
savePeople(PeopleEntity people)
用户有子类添加
|
void |
updatePeople(PeopleEntity people)
根据用户ID进行用户实体的更新,用于有子类的更新操作
|
void deletePeople(int id)
id - 用户IDvoid deletePeople(int[] peopleIds)
peopleIds - 用户id集合PeopleEntity getByPeople(PeopleEntity people, int appId)
people - 用户实体,可以设置用户名、用户邮箱、用户手机号appId - 应用idint getCountByAppIdAndMap(int appId,
Map whereMap)
appId - 应用idwhereMap - 其他查询条件 key:字段属性名 value:字段属性值int getCountByDate(String peopleDateTime, Integer appId)
peopleDateTime - appId - 应用idPeopleEntity getEntityByCode(String userName, String peopleCode, int appId)
userName - 用户名peopleCode - 验证码appId - 应用idPeopleEntity getEntityByMailOrPhone(String userName, int appId)
userName - 用户名(注:手机号,邮箱)appId - 应用IdPeopleEntity getEntityByUserName(String userName, int appId)
userName - 用户名(注:手机号,邮箱,用户名称都可作为用户名登录)appId - 应用Id@Deprecated List<PeopleEntity> queryByAppIdAndMap(int appId, Map whereMap)
appId - 应用idwhereMap - 其他查询条件 key:字段属性名 value:字段属性值List<PeopleEntity> query(int appId, Map where)
appId - 应用编号people - 用户@Deprecated int queryCountByAppId(int appId)
appId - 应用ID@Deprecated List<PeopleEntity> queryPageListByAppId(int appId)
appId - 应用Idint savePeople(PeopleEntity people)
entity - 用户实体void updatePeople(PeopleEntity people)
entity - 用户实体Copyright © 2019. All rights reserved.