07eb9c06 by xiaojie

【数据资产】

1、补充专区名称
1 parent bbb50e05
...@@ -22,6 +22,9 @@ public class EnterpriseApproveRSVO extends ApproveVO { ...@@ -22,6 +22,9 @@ public class EnterpriseApproveRSVO extends ApproveVO {
22 22
23 @Schema(description = "跨平台审批状态(N 初始 A 审批中 Y 已通过 R 驳回 C 已撤销)") 23 @Schema(description = "跨平台审批状态(N 初始 A 审批中 Y 已通过 R 驳回 C 已撤销)")
24 private String crossPlatformApproveState; 24 private String crossPlatformApproveState;
25
26 @Schema(description = "专区名称")
27 private String zqName;
25 28
26 /******** 子对象 *****/ 29 /******** 子对象 *****/
27 30
......
...@@ -153,6 +153,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris ...@@ -153,6 +153,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris
153 if (ObjectUtils.isNotEmpty(mfEnterpriseMap) && mfEnterpriseMap.containsKey(enterpriseApproveRSVO.getBizGuid())) { 153 if (ObjectUtils.isNotEmpty(mfEnterpriseMap) && mfEnterpriseMap.containsKey(enterpriseApproveRSVO.getBizGuid())) {
154 MfEnterprise mfEnterprise = mfEnterpriseMap.get(enterpriseApproveRSVO.getBizGuid()); 154 MfEnterprise mfEnterprise = mfEnterpriseMap.get(enterpriseApproveRSVO.getBizGuid());
155 enterpriseApproveRSVO.setCrossPlatformApproveState(mfEnterprise.getCrossPlatformApproveState()); 155 enterpriseApproveRSVO.setCrossPlatformApproveState(mfEnterprise.getCrossPlatformApproveState());
156 enterpriseApproveRSVO.setZqName(mfEnterprise.getZqName());
156 enterpriseApproveRSVO.setTenantName(mfEnterprise.getTenantName()); 157 enterpriseApproveRSVO.setTenantName(mfEnterprise.getTenantName());
157 } 158 }
158 results.add(enterpriseApproveRSVO); 159 results.add(enterpriseApproveRSVO);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!