Merge remote-tracking branch 'origin/dev-tmp1' into dev-tmp1
commit
67854c604c
|
|
@ -44,6 +44,8 @@ public class QualFilingPersonnelCertExecutor implements QualFilingPersonnelCertA
|
||||||
entity.setValidEndDate(cmd.getValidEndDate());
|
entity.setValidEndDate(cmd.getValidEndDate());
|
||||||
entity.setReviewDate(cmd.getReviewDate());
|
entity.setReviewDate(cmd.getReviewDate());
|
||||||
entity.setCertAttachmentUrl(cmd.getCertAttachmentUrl());
|
entity.setCertAttachmentUrl(cmd.getCertAttachmentUrl());
|
||||||
|
entity.setPractisingCertUrl(cmd.getPractisingCertUrl());
|
||||||
|
entity.setPractisingCertCode(cmd.getPractisingCertCode());
|
||||||
|
|
||||||
QualFilingPersonnelCertEntity result = qualFilingPersonnelCertDomainService.add(entity);
|
QualFilingPersonnelCertEntity result = qualFilingPersonnelCertDomainService.add(entity);
|
||||||
return SingleResponse.success(toCO(result));
|
return SingleResponse.success(toCO(result));
|
||||||
|
|
@ -72,6 +74,8 @@ public class QualFilingPersonnelCertExecutor implements QualFilingPersonnelCertA
|
||||||
entity.setValidEndDate(cmd.getValidEndDate());
|
entity.setValidEndDate(cmd.getValidEndDate());
|
||||||
entity.setReviewDate(cmd.getReviewDate());
|
entity.setReviewDate(cmd.getReviewDate());
|
||||||
entity.setCertAttachmentUrl(cmd.getCertAttachmentUrl());
|
entity.setCertAttachmentUrl(cmd.getCertAttachmentUrl());
|
||||||
|
entity.setPractisingCertUrl(cmd.getPractisingCertUrl());
|
||||||
|
entity.setPractisingCertCode(cmd.getPractisingCertCode());
|
||||||
|
|
||||||
QualFilingPersonnelCertEntity result = qualFilingPersonnelCertDomainService.modify(entity);
|
QualFilingPersonnelCertEntity result = qualFilingPersonnelCertDomainService.modify(entity);
|
||||||
return SingleResponse.success(toCO(result));
|
return SingleResponse.success(toCO(result));
|
||||||
|
|
@ -123,6 +127,8 @@ public class QualFilingPersonnelCertExecutor implements QualFilingPersonnelCertA
|
||||||
co.setValidEndDate(entity.getValidEndDate());
|
co.setValidEndDate(entity.getValidEndDate());
|
||||||
co.setReviewDate(entity.getReviewDate());
|
co.setReviewDate(entity.getReviewDate());
|
||||||
co.setCertAttachmentUrl(entity.getCertAttachmentUrl());
|
co.setCertAttachmentUrl(entity.getCertAttachmentUrl());
|
||||||
|
co.setPractisingCertUrl(entity.getPractisingCertUrl());
|
||||||
|
co.setPractisingCertCode(entity.getPractisingCertCode());
|
||||||
co.setBusinessScope(entity.getBusinessScope());
|
co.setBusinessScope(entity.getBusinessScope());
|
||||||
co.setTenantId(entity.getTenantId());
|
co.setTenantId(entity.getTenantId());
|
||||||
return co;
|
return co;
|
||||||
|
|
|
||||||
|
|
@ -113,6 +113,8 @@ public class QualFilingOrgPersonnelImporter {
|
||||||
entity.setValidEndDate(source.getValidEndDate());
|
entity.setValidEndDate(source.getValidEndDate());
|
||||||
entity.setReviewDate(source.getReviewDate());
|
entity.setReviewDate(source.getReviewDate());
|
||||||
entity.setCertAttachmentUrl(source.getCertAttachmentUrl());
|
entity.setCertAttachmentUrl(source.getCertAttachmentUrl());
|
||||||
|
entity.setPractisingCertUrl(source.getPractisingCertUrl());
|
||||||
|
entity.setPractisingCertCode(source.getPractisingCertCode());
|
||||||
entity.setBusinessScope(source.getBusinessScope());
|
entity.setBusinessScope(source.getBusinessScope());
|
||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -103,6 +103,18 @@ public class QualFilingPersonnelCertChangeAddCmd implements Serializable {
|
||||||
@ApiModelProperty(value = "证书附件地址")
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
@Size(max = 512, message = "证书附件地址不能超过512个字符")
|
@Size(max = 512, message = "证书附件地址不能超过512个字符")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
@Size(max = 500, message = "执业证书地址不能超过500个字符")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书编号
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
@Size(max = 200, message = "执业证书编号不能超过200个字符")
|
||||||
|
private String practisingCertCode;
|
||||||
/**
|
/**
|
||||||
* 来源人员证书id
|
* 来源人员证书id
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -96,6 +96,16 @@ public class QualFilingPersonnelCertChangeUpdateCmd implements Serializable {
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "证书附件地址")
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书编号
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
private String practisingCertCode;
|
||||||
/**
|
/**
|
||||||
* 来源人员证书id
|
* 来源人员证书id
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -96,6 +96,16 @@ public class QualFilingPersonnelCertChangeCo extends ClientObject {
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "证书附件地址")
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书地址
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书编号
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
private String practisingCertCode;
|
||||||
/**
|
/**
|
||||||
* 来源人员证书id
|
* 来源人员证书id
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,12 @@ public class OrgPersonnelCertCO {
|
||||||
@ApiModelProperty(value = "证书附件地址")
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备案安全评价业务范围")
|
@ApiModelProperty(value = "备案安全评价业务范围")
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,4 +38,14 @@ public class PersonnelCertFilingPageCO {
|
||||||
* 证书编号
|
* 证书编号
|
||||||
*/
|
*/
|
||||||
private String certNo;
|
private String certNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 执业证书地址
|
||||||
|
*/
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 执业证书编号
|
||||||
|
*/
|
||||||
|
private String practisingCertCode;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,12 @@ public class QualFilingPersonnelCertCO {
|
||||||
@ApiModelProperty(value = "证书附件地址")
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备案安全评价业务范围")
|
@ApiModelProperty(value = "备案安全评价业务范围")
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -62,6 +62,14 @@ public class OrgPersonnelCertAddCmd {
|
||||||
@Size(max = 500, message = "证书附件地址不能超过500个字符")
|
@Size(max = 500, message = "证书附件地址不能超过500个字符")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
@Size(max = 500, message = "执业证书地址不能超过500个字符")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
@Size(max = 200, message = "执业证书编号不能超过200个字符")
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备案安全评价业务范围")
|
@ApiModelProperty(value = "备案安全评价业务范围")
|
||||||
@Size(max = 500, message = "备案安全评价业务范围不能超过500个字符")
|
@Size(max = 500, message = "备案安全评价业务范围不能超过500个字符")
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,14 @@ public class OrgPersonnelCertModifyCmd {
|
||||||
@Size(max = 500, message = "证书附件地址不能超过500个字符")
|
@Size(max = 500, message = "证书附件地址不能超过500个字符")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
@Size(max = 500, message = "执业证书地址不能超过500个字符")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
@Size(max = 200, message = "执业证书编号不能超过200个字符")
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备案安全评价业务范围")
|
@ApiModelProperty(value = "备案安全评价业务范围")
|
||||||
@Size(max = 500, message = "备案安全评价业务范围不能超过500个字符")
|
@Size(max = 500, message = "备案安全评价业务范围不能超过500个字符")
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,12 @@ public class QualFilingPersonnelCertAddCmd {
|
||||||
@ApiModelProperty(value = "证书附件地址")
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备案安全评价业务范围")
|
@ApiModelProperty(value = "备案安全评价业务范围")
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,12 @@ public class QualFilingPersonnelCertModifyCmd {
|
||||||
@ApiModelProperty(value = "证书附件地址")
|
@ApiModelProperty(value = "证书附件地址")
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书地址")
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "执业证书编号")
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
@ApiModelProperty(value = "备案安全评价业务范围")
|
@ApiModelProperty(value = "备案安全评价业务范围")
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -82,6 +82,14 @@ public class QualFilingPersonnelCertChangeE extends BaseE {
|
||||||
* 证书附件地址
|
* 证书附件地址
|
||||||
*/
|
*/
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书地址
|
||||||
|
*/
|
||||||
|
private String practisingCertUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书编号
|
||||||
|
*/
|
||||||
|
private String practisingCertCode;
|
||||||
/**
|
/**
|
||||||
* 来源人员证书id
|
* 来源人员证书id
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,12 @@ public class OrgPersonnelCertEntity {
|
||||||
/** 证书附件地址 */
|
/** 证书附件地址 */
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
/** 执业证书地址 */
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
/** 执业证书编号 */
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
/** 备案安全评价业务范围 */
|
/** 备案安全评价业务范围 */
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,12 @@ public class QualFilingPersonnelCertEntity {
|
||||||
/** 证书附件地址 */
|
/** 证书附件地址 */
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
|
||||||
|
/** 执业证书地址 */
|
||||||
|
private String practisingCertUrl;
|
||||||
|
|
||||||
|
/** 执业证书编号 */
|
||||||
|
private String practisingCertCode;
|
||||||
|
|
||||||
/** 来源人员证书ID */
|
/** 来源人员证书ID */
|
||||||
private Long sourceCertId;
|
private Long sourceCertId;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,8 @@ public class OrgPersonnelCertDO {
|
||||||
private LocalDate validEndDate;
|
private LocalDate validEndDate;
|
||||||
private LocalDate reviewDate;
|
private LocalDate reviewDate;
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
private String practisingCertUrl;
|
||||||
|
private String practisingCertCode;
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
private String professionalCapabilityCode;
|
private String professionalCapabilityCode;
|
||||||
private Long industryProfessionalStandardsId;
|
private Long industryProfessionalStandardsId;
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,8 @@ public class QualFilingPersonnelCertDO {
|
||||||
private LocalDate validEndDate;
|
private LocalDate validEndDate;
|
||||||
private LocalDate reviewDate;
|
private LocalDate reviewDate;
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
private String practisingCertUrl;
|
||||||
|
private String practisingCertCode;
|
||||||
private Long sourceCertId;
|
private Long sourceCertId;
|
||||||
private String businessScope;
|
private String businessScope;
|
||||||
private String professionalCapabilityCode;
|
private String professionalCapabilityCode;
|
||||||
|
|
|
||||||
|
|
@ -115,6 +115,8 @@ public class QualFilingPersonnelCertGatewayImpl implements QualFilingPersonnelCe
|
||||||
dataObject.setValidEndDate(entity.getValidEndDate());
|
dataObject.setValidEndDate(entity.getValidEndDate());
|
||||||
dataObject.setReviewDate(entity.getReviewDate());
|
dataObject.setReviewDate(entity.getReviewDate());
|
||||||
dataObject.setCertAttachmentUrl(entity.getCertAttachmentUrl());
|
dataObject.setCertAttachmentUrl(entity.getCertAttachmentUrl());
|
||||||
|
dataObject.setPractisingCertUrl(entity.getPractisingCertUrl());
|
||||||
|
dataObject.setPractisingCertCode(entity.getPractisingCertCode());
|
||||||
dataObject.setSourceCertId(entity.getSourceCertId());
|
dataObject.setSourceCertId(entity.getSourceCertId());
|
||||||
dataObject.setTenantId(entity.getTenantId());
|
dataObject.setTenantId(entity.getTenantId());
|
||||||
return dataObject;
|
return dataObject;
|
||||||
|
|
@ -141,6 +143,8 @@ public class QualFilingPersonnelCertGatewayImpl implements QualFilingPersonnelCe
|
||||||
entity.setValidEndDate(dataObject.getValidEndDate());
|
entity.setValidEndDate(dataObject.getValidEndDate());
|
||||||
entity.setReviewDate(dataObject.getReviewDate());
|
entity.setReviewDate(dataObject.getReviewDate());
|
||||||
entity.setCertAttachmentUrl(dataObject.getCertAttachmentUrl());
|
entity.setCertAttachmentUrl(dataObject.getCertAttachmentUrl());
|
||||||
|
entity.setPractisingCertUrl(dataObject.getPractisingCertUrl());
|
||||||
|
entity.setPractisingCertCode(dataObject.getPractisingCertCode());
|
||||||
entity.setSourceCertId(dataObject.getSourceCertId());
|
entity.setSourceCertId(dataObject.getSourceCertId());
|
||||||
entity.setBusinessScope(dataObject.getBusinessScope());
|
entity.setBusinessScope(dataObject.getBusinessScope());
|
||||||
entity.setTenantId(dataObject.getTenantId());
|
entity.setTenantId(dataObject.getTenantId());
|
||||||
|
|
|
||||||
|
|
@ -90,6 +90,14 @@ public class QualFilingPersonnelCertChangeDO extends BaseDO {
|
||||||
* 证书附件地址
|
* 证书附件地址
|
||||||
*/
|
*/
|
||||||
private String certAttachmentUrl;
|
private String certAttachmentUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书地址
|
||||||
|
*/
|
||||||
|
private String practisingCertUrl;
|
||||||
|
/**
|
||||||
|
* 执业证书编号
|
||||||
|
*/
|
||||||
|
private String practisingCertCode;
|
||||||
/**
|
/**
|
||||||
* 来源人员证书id
|
* 来源人员证书id
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,8 @@
|
||||||
<result column="valid_end_date" property="validEndDate"/>
|
<result column="valid_end_date" property="validEndDate"/>
|
||||||
<result column="review_date" property="reviewDate"/>
|
<result column="review_date" property="reviewDate"/>
|
||||||
<result column="cert_attachment_url" property="certAttachmentUrl"/>
|
<result column="cert_attachment_url" property="certAttachmentUrl"/>
|
||||||
|
<result column="practising_cert_url" property="practisingCertUrl"/>
|
||||||
|
<result column="practising_cert_code" property="practisingCertCode"/>
|
||||||
<result column="business_scope" property="businessScope"/>
|
<result column="business_scope" property="businessScope"/>
|
||||||
<result column="professional_capability_code" property="professionalCapabilityCode"/>
|
<result column="professional_capability_code" property="professionalCapabilityCode"/>
|
||||||
<result column="industry_professional_standards_id" property="industryProfessionalStandardsId"/>
|
<result column="industry_professional_standards_id" property="industryProfessionalStandardsId"/>
|
||||||
|
|
@ -38,7 +40,7 @@
|
||||||
|
|
||||||
<!-- 通用查询结果列 -->
|
<!-- 通用查询结果列 -->
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
`id`, `org_id`, `personnel_id`, `cert_name`, `cert_type_code`, `cert_level`, `cert_category_code`, `cert_category_name`, `operation_category_code`, `operation_category_name`, `cert_no`, `issue_org`, `valid_start_date`, `valid_end_date`, `review_date`, `cert_attachment_url`, `business_scope`, `professional_capability_code`, `industry_professional_standards_id`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
|
`id`, `org_id`, `personnel_id`, `cert_name`, `cert_type_code`, `cert_level`, `cert_category_code`, `cert_category_name`, `operation_category_code`, `operation_category_name`, `cert_no`, `issue_org`, `valid_start_date`, `valid_end_date`, `review_date`, `cert_attachment_url`, `practising_cert_url`, `practising_cert_code`, `business_scope`, `professional_capability_code`, `industry_professional_standards_id`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<!-- 根据人员id列表查询证书专业能力信息 -->
|
<!-- 根据人员id列表查询证书专业能力信息 -->
|
||||||
|
|
@ -94,6 +96,8 @@
|
||||||
opc.valid_end_date,
|
opc.valid_end_date,
|
||||||
opc.review_date,
|
opc.review_date,
|
||||||
opc.cert_attachment_url,
|
opc.cert_attachment_url,
|
||||||
|
opc.practising_cert_url,
|
||||||
|
opc.practising_cert_code,
|
||||||
opc.business_scope,
|
opc.business_scope,
|
||||||
opc.professional_capability_code,
|
opc.professional_capability_code,
|
||||||
opc.industry_professional_standards_id,
|
opc.industry_professional_standards_id,
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@
|
||||||
<result property="validEndDate" column="valid_end_date"/>
|
<result property="validEndDate" column="valid_end_date"/>
|
||||||
<result property="reviewDate" column="review_date"/>
|
<result property="reviewDate" column="review_date"/>
|
||||||
<result property="certAttachmentUrl" column="cert_attachment_url"/>
|
<result property="certAttachmentUrl" column="cert_attachment_url"/>
|
||||||
|
<result property="practisingCertUrl" column="practising_cert_url"/>
|
||||||
|
<result property="practisingCertCode" column="practising_cert_code"/>
|
||||||
<result property="sourceCertId" column="source_cert_id"/>
|
<result property="sourceCertId" column="source_cert_id"/>
|
||||||
<result property="businessScope" column="business_scope"/>
|
<result property="businessScope" column="business_scope"/>
|
||||||
<result property="professionalCapabilityCode" column="professional_capability_code"/>
|
<result property="professionalCapabilityCode" column="professional_capability_code"/>
|
||||||
|
|
@ -56,6 +58,8 @@
|
||||||
valid_end_date,
|
valid_end_date,
|
||||||
review_date,
|
review_date,
|
||||||
cert_attachment_url,
|
cert_attachment_url,
|
||||||
|
practising_cert_url,
|
||||||
|
practising_cert_code,
|
||||||
source_cert_id,
|
source_cert_id,
|
||||||
business_scope,
|
business_scope,
|
||||||
professional_capability_code,
|
professional_capability_code,
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,8 @@
|
||||||
<result column="valid_end_date" property="validEndDate"/>
|
<result column="valid_end_date" property="validEndDate"/>
|
||||||
<result column="review_date" property="reviewDate"/>
|
<result column="review_date" property="reviewDate"/>
|
||||||
<result column="cert_attachment_url" property="certAttachmentUrl"/>
|
<result column="cert_attachment_url" property="certAttachmentUrl"/>
|
||||||
|
<result column="practising_cert_url" property="practisingCertUrl"/>
|
||||||
|
<result column="practising_cert_code" property="practisingCertCode"/>
|
||||||
<result column="source_cert_id" property="sourceCertId"/>
|
<result column="source_cert_id" property="sourceCertId"/>
|
||||||
<result column="business_scope" property="businessScope"/>
|
<result column="business_scope" property="businessScope"/>
|
||||||
<result column="professional_capability_code" property="professionalCapabilityCode"/>
|
<result column="professional_capability_code" property="professionalCapabilityCode"/>
|
||||||
|
|
@ -39,7 +41,7 @@
|
||||||
|
|
||||||
<!-- 通用查询结果列 -->
|
<!-- 通用查询结果列 -->
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
`id`, `filing_id`, `filing_personnel_id`, `cert_name`, `cert_type_code`, `cert_level`, `cert_category_code`, `cert_category_name`, `operation_category_code`, `operation_category_name`, `cert_no`, `issue_org`, `valid_start_date`, `valid_end_date`, `review_date`, `cert_attachment_url`, `source_cert_id`, `business_scope`, `professional_capability_code`, `industry_professional_standards_id`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `org_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
|
`id`, `filing_id`, `filing_personnel_id`, `cert_name`, `cert_type_code`, `cert_level`, `cert_category_code`, `cert_category_name`, `operation_category_code`, `operation_category_name`, `cert_no`, `issue_org`, `valid_start_date`, `valid_end_date`, `review_date`, `cert_attachment_url`, `practising_cert_url`, `practising_cert_code`, `source_cert_id`, `business_scope`, `professional_capability_code`, `industry_professional_standards_id`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `org_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<!-- 根据人员id列表查询专业能力证书类型编码 -->
|
<!-- 根据人员id列表查询专业能力证书类型编码 -->
|
||||||
|
|
@ -50,7 +52,9 @@
|
||||||
opc.professional_capability_code AS professionalCapabilityCode,
|
opc.professional_capability_code AS professionalCapabilityCode,
|
||||||
opc.cert_type_code AS certTypeCode,
|
opc.cert_type_code AS certTypeCode,
|
||||||
cert_level AS certLevel,
|
cert_level AS certLevel,
|
||||||
cert_no AS certNo
|
cert_no AS certNo,
|
||||||
|
opc.practising_cert_url AS practisingCertUrl,
|
||||||
|
opc.practising_cert_code AS practisingCertCode
|
||||||
FROM org_personnel_cert opc
|
FROM org_personnel_cert opc
|
||||||
WHERE personnel_id IN
|
WHERE personnel_id IN
|
||||||
<foreach collection="personnelIds" item="personnelId" open="(" separator="," close=")">
|
<foreach collection="personnelIds" item="personnelId" open="(" separator="," close=")">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue