|
|
@ -95,6 +95,7 @@ public class UserServiceImpl extends BaseServiceImpl<UserDao, UserEntity> implem |
|
|
|
String identityNo = (String) params.get("identityNo"); |
|
|
|
String startTime = (String) params.get("startTime"); |
|
|
|
String endTime = (String) params.get("endTime"); |
|
|
|
String isParty = (String) params.get("isParty"); |
|
|
|
|
|
|
|
QueryWrapper<UserEntity> wrapper = new QueryWrapper<>(); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(id), FieldConstant.ID, id); |
|
|
@ -108,6 +109,7 @@ public class UserServiceImpl extends BaseServiceImpl<UserDao, UserEntity> implem |
|
|
|
wrapper.lt(StringUtils.isNotBlank(endTime), "REGISTER_TIME", endTime); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(auditState), FieldConstant.STATE, auditState); |
|
|
|
wrapper.in(CollUtil.isNotEmpty(deptIdList), "GRID_ID", deptIdList); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(isParty), "PARTY_FLAG", isParty); |
|
|
|
return wrapper; |
|
|
|
} |
|
|
|
|
|
|
|