work join date

dev-deployment
luotaiqian 2026-07-01 09:34:41 +08:00
parent f0a9ce54b2
commit 0ca52c4077
10 changed files with 25 additions and 2 deletions

View File

@ -39,6 +39,7 @@ public class QualFilingPersonnelExecutor implements QualFilingPersonnelApi {
entity.setGenderCode(cmd.getGenderCode());
entity.setGenderName(cmd.getGenderName());
entity.setBirthDate(cmd.getBirthDate());
entity.setJoinWorkDate(cmd.getJoinWorkDate());
entity.setIdCardNo(cmd.getIdCardNo());
entity.setCurrentAddress(cmd.getCurrentAddress());
entity.setOfficeAddress(cmd.getOfficeAddress());
@ -76,6 +77,7 @@ public class QualFilingPersonnelExecutor implements QualFilingPersonnelApi {
entity.setGenderCode(cmd.getGenderCode());
entity.setGenderName(cmd.getGenderName());
entity.setBirthDate(cmd.getBirthDate());
entity.setJoinWorkDate(cmd.getJoinWorkDate());
entity.setIdCardNo(cmd.getIdCardNo());
entity.setCurrentAddress(cmd.getCurrentAddress());
entity.setOfficeAddress(cmd.getOfficeAddress());
@ -144,6 +146,7 @@ public class QualFilingPersonnelExecutor implements QualFilingPersonnelApi {
co.setGenderCode(entity.getGenderCode());
co.setGenderName(entity.getGenderName());
co.setBirthDate(entity.getBirthDate());
co.setJoinWorkDate(entity.getJoinWorkDate());
co.setIdCardNo(entity.getIdCardNo());
co.setCurrentAddress(entity.getCurrentAddress());
co.setOfficeAddress(entity.getOfficeAddress());

View File

@ -722,6 +722,7 @@ public class QualFilingOrchestrator {
co.setGenderCode(entity.getGenderCode());
co.setGenderName(entity.getGenderName());
co.setBirthDate(entity.getBirthDate());
co.setJoinWorkDate(entity.getJoinWorkDate());
co.setIdCardNo(entity.getIdCardNo());
co.setCurrentAddress(entity.getCurrentAddress());
co.setOfficeAddress(entity.getOfficeAddress());

View File

@ -44,6 +44,9 @@ public class QualFilingPersonnelCO {
/** birthDate */
private LocalDate birthDate;
/** 参加工作时间 */
private LocalDate joinWorkDate;
/** idCardNo */
private String idCardNo;

View File

@ -35,6 +35,9 @@ public class QualFilingPersonnelAddCmd {
/** birthDate */
private LocalDate birthDate;
/** 参加工作时间 */
private LocalDate joinWorkDate;
/** idCardNo */
private String idCardNo;

View File

@ -38,6 +38,9 @@ public class QualFilingPersonnelModifyCmd {
/** birthDate */
private LocalDate birthDate;
/** 参加工作时间 */
private LocalDate joinWorkDate;
/** idCardNo */
private String idCardNo;

View File

@ -14,7 +14,10 @@ public enum MaterialTypeEnum {
WORKPLACE_AREA_CERT(7, "工作场所及档案室面积证明"),
PROFESSIONAL_ABILITY_CERT(8, "安全评价师专业能力证明"),
RELATED_PERSONNEL_CERT(9, "相关负责人证明材料"),
INTERNAL_MANAGEMENT_SYSTEM(10, "机构内部管理制度");
INTERNAL_MANAGEMENT_SYSTEM(10, "机构内部管理制度"),
;
public static final String REMARKS = "1,申请材料目录(原件),2,申请书(原件),3,法人证明(复印件),4,三年内无重大违法失信记录查询证明,5,法定代表人承诺书(原件),6,固定资产法定证明材料,7,工作场所及档案室面积证明,8,安全评价师专业能力证明,9,相关负责人证明材料,10,机构内部管理制度";
private final int code;
private final String name;

View File

@ -45,6 +45,9 @@ public class QualFilingPersonnelEntity {
/** 出生日期 */
private LocalDate birthDate;
/** 参加工作时间 */
private LocalDate joinWorkDate;
/** 身份证号 */
private String idCardNo;

View File

@ -26,6 +26,7 @@ public class QualFilingPersonnelDO {
private Integer genderCode;
private String genderName;
private LocalDate birthDate;
private LocalDate joinWorkDate;
private String idCardNo;
private String currentAddress;
private String officeAddress;

View File

@ -98,6 +98,7 @@ public class QualFilingPersonnelGatewayImpl implements QualFilingPersonnelGatewa
dataObject.setGenderCode(entity.getGenderCode());
dataObject.setGenderName(entity.getGenderName());
dataObject.setBirthDate(entity.getBirthDate());
dataObject.setJoinWorkDate(entity.getJoinWorkDate());
dataObject.setIdCardNo(entity.getIdCardNo());
dataObject.setCurrentAddress(entity.getCurrentAddress());
dataObject.setOfficeAddress(entity.getOfficeAddress());
@ -132,6 +133,7 @@ public class QualFilingPersonnelGatewayImpl implements QualFilingPersonnelGatewa
entity.setGenderCode(dataObject.getGenderCode());
entity.setGenderName(dataObject.getGenderName());
entity.setBirthDate(dataObject.getBirthDate());
entity.setJoinWorkDate(dataObject.getJoinWorkDate());
entity.setIdCardNo(dataObject.getIdCardNo());
entity.setCurrentAddress(dataObject.getCurrentAddress());
entity.setOfficeAddress(dataObject.getOfficeAddress());

View File

@ -15,6 +15,7 @@
<result column="gender_code" property="genderCode"/>
<result column="gender_name" property="genderName"/>
<result column="birth_date" property="birthDate"/>
<result column="join_work_date" property="joinWorkDate"/>
<result column="id_card_no" property="idCardNo"/>
<result column="current_address" property="currentAddress"/>
<result column="office_address" property="officeAddress"/>
@ -45,7 +46,7 @@
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
`id`, `filing_id`, `source_personnel_id`, `person_name`, `person_type_code`, `person_type_name`, `position_name`, `title_name`, `gender_code`, `gender_name`, `birth_date`, `id_card_no`, `current_address`, `office_address`, `education_code`, `education_name`, `graduate_school`, `major`, `qual_scope`, `publications`, `professional_level_cert`, `register_engineer_flag`, `ability_declaration`, `work_experience`, `proof_material_url`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `org_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
`id`, `filing_id`, `source_personnel_id`, `person_name`, `person_type_code`, `person_type_name`, `position_name`, `title_name`, `gender_code`, `gender_name`, `birth_date`, `join_work_date`, `id_card_no`, `current_address`, `office_address`, `education_code`, `education_name`, `graduate_school`, `major`, `qual_scope`, `publications`, `professional_level_cert`, `register_engineer_flag`, `ability_declaration`, `work_experience`, `proof_material_url`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `org_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
</sql>
</mapper>