【数据资产】
1、补充专区名称
Showing
2 changed files
with
4 additions
and
0 deletions
| ... | @@ -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); | ... | ... |
-
Please register or sign in to post a comment