【DAOP-1.0】企业认证
【功能点】联调问题处理
Showing
4 changed files
with
7 additions
and
4 deletions
... | @@ -34,6 +34,9 @@ public class EnterpriseQueryVO extends FlowBizGuidQueryDTO { | ... | @@ -34,6 +34,9 @@ public class EnterpriseQueryVO extends FlowBizGuidQueryDTO { |
34 | @Schema(description = "业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃;B 变更中;】") | 34 | @Schema(description = "业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃;B 变更中;】") |
35 | private String bizApproveState; | 35 | private String bizApproveState; |
36 | 36 | ||
37 | @Schema(description = "排除业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃;B 变更中;】") | ||
38 | private List<String> bizApproveStateNotList; | ||
39 | |||
37 | /******** 自定义扩展 *****/ | 40 | /******** 自定义扩展 *****/ |
38 | 41 | ||
39 | /** | 42 | /** | ... | ... |
... | @@ -38,7 +38,7 @@ public class ServicerMaintainRQVO extends FlowRQBaseVO { | ... | @@ -38,7 +38,7 @@ public class ServicerMaintainRQVO extends FlowRQBaseVO { |
38 | * 提交时间 | 38 | * 提交时间 |
39 | */ | 39 | */ |
40 | @Schema(description = "提交时间") | 40 | @Schema(description = "提交时间") |
41 | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 41 | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
42 | private Date submitTime; | 42 | private Date submitTime; |
43 | 43 | ||
44 | /** | 44 | /** | ... | ... |
... | @@ -44,7 +44,7 @@ public class ServicerMaintainRSVO { | ... | @@ -44,7 +44,7 @@ public class ServicerMaintainRSVO { |
44 | * 提交时间 | 44 | * 提交时间 |
45 | */ | 45 | */ |
46 | @Schema(description = "提交时间") | 46 | @Schema(description = "提交时间") |
47 | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 47 | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
48 | private Date submitTime; | 48 | private Date submitTime; |
49 | 49 | ||
50 | /** | 50 | /** | ... | ... |
... | @@ -83,8 +83,8 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris | ... | @@ -83,8 +83,8 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris |
83 | beforeQuery(queryVO); | 83 | beforeQuery(queryVO); |
84 | if (queryVO.getIsNeedQuery()) { | 84 | if (queryVO.getIsNeedQuery()) { |
85 | LambdaQueryWrapper<MfEnterprise> queryWrapper = mfEnterpriseService.csbrQueryWrapper(queryVO, MfEnterprise.class); | 85 | LambdaQueryWrapper<MfEnterprise> queryWrapper = mfEnterpriseService.csbrQueryWrapper(queryVO, MfEnterprise.class); |
86 | queryWrapper.in(CollectionUtils.isNotEmpty(queryVO.getGuidList()), MfEnterprise::getGuid, | 86 | queryWrapper.in(CollectionUtils.isNotEmpty(queryVO.getGuidList()), MfEnterprise::getGuid,queryVO.getGuidList()); |
87 | queryVO.getGuidList()); | 87 | queryWrapper.notIn(CollectionUtils.isNotEmpty(queryVO.getBizApproveStateNotList()), MfEnterprise::getBizApproveState,queryVO.getBizApproveStateNotList()); |
88 | queryWrapper.orderByDesc(MfEnterprise::getCreateTime); | 88 | queryWrapper.orderByDesc(MfEnterprise::getCreateTime); |
89 | PageListVO<MfEnterprise> pageList = mfEnterpriseService.csbrPageList(queryVO, queryWrapper); | 89 | PageListVO<MfEnterprise> pageList = mfEnterpriseService.csbrPageList(queryVO, queryWrapper); |
90 | PageListVO<EnterpriseRSVO> rsPageList = csbrBeanUtil.convert(pageList, PageListVO.class); | 90 | PageListVO<EnterpriseRSVO> rsPageList = csbrBeanUtil.convert(pageList, PageListVO.class); | ... | ... |
-
Please register or sign in to post a comment