dev
luotaiqian 2026-08-04 18:10:52 +08:00
parent 30f5df84d4
commit bd3db07110
3 changed files with 5 additions and 2 deletions

View File

@ -44,6 +44,9 @@ public class QualFilingPersonnelInfoCO {
@ApiModelProperty(value = "评价师证书编号") @ApiModelProperty(value = "评价师证书编号")
private String evaluatorCertNo; private String evaluatorCertNo;
@ApiModelProperty(value = "参加工作日期")
private LocalDate joinWorkDate;
@ApiModelProperty(value = "能力codeList") @ApiModelProperty(value = "能力codeList")
private List<String> professionalCapabilityCodeList; private List<String> professionalCapabilityCodeList;
} }

View File

@ -71,7 +71,7 @@
<!-- 资质备案人员分页查询,直接返回 CO --> <!-- 资质备案人员分页查询,直接返回 CO -->
<select id="filingPage" resultType="org.qinan.safetyeval.client.co.QualFilingPersonnelInfoCO"> <select id="filingPage" resultType="org.qinan.safetyeval.client.co.QualFilingPersonnelInfoCO">
SELECT p.id source_personnel_id, p.id, p.user_name personName, po.position_name, p.post_id, p.gender_code, p.gender_name SELECT p.id source_personnel_id, p.id, p.user_name personName, po.position_name, p.post_id, p.gender_code, p.gender_name
, p.birth_date, p.register_engineer_flag, p.evaluator_cert_no , p.birth_date, p.register_engineer_flag, p.evaluator_cert_no, p.join_work_date
FROM org_personnel p FROM org_personnel p
left join org_department d on p.dept_id = d.id and d.delete_enum = 'false' left join org_department d on p.dept_id = d.id and d.delete_enum = 'false'
left join org_position po on po.id = p.post_id and po.delete_enum = 'false' left join org_position po on po.id = p.post_id and po.delete_enum = 'false'

View File

@ -50,7 +50,7 @@
<select id="getFillingPersonInfo" resultType="org.qinan.safetyeval.client.co.QualFilingPersonnelInfoCO"> <select id="getFillingPersonInfo" resultType="org.qinan.safetyeval.client.co.QualFilingPersonnelInfoCO">
SELECT fp.source_personnel_id, fp.id, p.user_name personName, po.position_name, p.post_id, p.gender_code, p.gender_name SELECT fp.source_personnel_id, fp.id, p.user_name personName, po.position_name, p.post_id, p.gender_code, p.gender_name
, p.birth_date, p.register_engineer_flag, p.evaluator_cert_no,fp.filing_id , p.birth_date, p.register_engineer_flag, p.evaluator_cert_no,fp.filing_id, p.join_work_date
FROM org_personnel p FROM org_personnel p
join qual_filing_personnel fp on p.id = fp.source_personnel_id join qual_filing_personnel fp on p.id = fp.source_personnel_id
left join org_department d on p.dept_id = d.id and d.delete_enum = 'false' left join org_department d on p.dept_id = d.id and d.delete_enum = 'false'