00fca795 by xiaojie

【数据资产】

1、企业增加是否认证字段
1 parent 81d2d33d
......@@ -154,6 +154,11 @@ public class TenantRQVO extends CsbrBaseVO {
@Schema(description = "持股类型 来自字典")
private String holdType;
@Schema(description = "创建类型(1 平台自建 2 主平台下发 3 企业认证)")
private String createType;
@Schema(description = "是否认证")
private String isCertification;
/********非库表存储属性*****/
......
......@@ -592,6 +592,8 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris
tenantVO.setContactTel(vo.getContactTel());
tenantVO.setCompanyAddress(String.format("%s/%s/%s",vo.getProvince(),vo.getCity(),vo.getDistrict()));
tenantVO.setTenantLicList(getTenantLicList(vo.getBusinessLicenseJson()));
tenantVO.setCreateType("3");
tenantVO.setIsCertification("Y");
personelFeign.changeUpdate(tenantVO);
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!