【数据资产】
1、企业增加是否认证字段
Showing
2 changed files
with
7 additions
and
0 deletions
| ... | @@ -154,6 +154,11 @@ public class TenantRQVO extends CsbrBaseVO { | ... | @@ -154,6 +154,11 @@ public class TenantRQVO extends CsbrBaseVO { |
| 154 | @Schema(description = "持股类型 来自字典") | 154 | @Schema(description = "持股类型 来自字典") |
| 155 | private String holdType; | 155 | private String holdType; |
| 156 | 156 | ||
| 157 | @Schema(description = "创建类型(1 平台自建 2 主平台下发 3 企业认证)") | ||
| 158 | private String createType; | ||
| 159 | |||
| 160 | @Schema(description = "是否认证") | ||
| 161 | private String isCertification; | ||
| 157 | 162 | ||
| 158 | /********非库表存储属性*****/ | 163 | /********非库表存储属性*****/ |
| 159 | 164 | ... | ... |
| ... | @@ -592,6 +592,8 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris | ... | @@ -592,6 +592,8 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris |
| 592 | tenantVO.setContactTel(vo.getContactTel()); | 592 | tenantVO.setContactTel(vo.getContactTel()); |
| 593 | tenantVO.setCompanyAddress(String.format("%s/%s/%s",vo.getProvince(),vo.getCity(),vo.getDistrict())); | 593 | tenantVO.setCompanyAddress(String.format("%s/%s/%s",vo.getProvince(),vo.getCity(),vo.getDistrict())); |
| 594 | tenantVO.setTenantLicList(getTenantLicList(vo.getBusinessLicenseJson())); | 594 | tenantVO.setTenantLicList(getTenantLicList(vo.getBusinessLicenseJson())); |
| 595 | tenantVO.setCreateType("3"); | ||
| 596 | tenantVO.setIsCertification("Y"); | ||
| 595 | personelFeign.changeUpdate(tenantVO); | 597 | personelFeign.changeUpdate(tenantVO); |
| 596 | } | 598 | } |
| 597 | 599 | ... | ... |
-
Please register or sign in to post a comment