|
|
@ -77,11 +77,15 @@ public class EpidemicUserInfoAuditServiceImpl extends BaseServiceImpl<EpidemicUs |
|
|
|
String id = (String) params.get(FieldConstant.ID_HUMP); |
|
|
|
String idCard = (String) params.get("idCard"); |
|
|
|
String userName = (String) params.get("userName"); |
|
|
|
String auditType = (String) params.get("auditType"); |
|
|
|
String auditState = (String) params.get("auditState"); |
|
|
|
|
|
|
|
QueryWrapper<EpidemicUserInfoAuditEntity> wrapper = new QueryWrapper<>(); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(id), FieldConstant.ID, id); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(idCard), "ID_CARD", idCard); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(userName), "USER_NAME", userName); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(auditType), "AUDIT_TYPE", auditType); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(auditState), "AUDIT_STATE", auditState); |
|
|
|
|
|
|
|
wrapper.orderByAsc("AUDIT_STATE"); |
|
|
|
|
|
|
|