dev-tmp1
luotaiqian 2026-08-08 13:37:46 +08:00
parent be5c92d1d9
commit f4836c58f3
7 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,5 @@
-- org_personnel 表新增「能力认定」字段JSON array 字符串)
ALTER TABLE `org_personnel`
ADD COLUMN `capability_assessment` varchar(512) DEFAULT NULL COMMENT '能力认定JSON array 字符串' AFTER `proof_material_url`;
ALTER TABLE org_personnel ADD COLUMN evaluator_flag tinyint DEFAULT NULL COMMENT '是否评价师 1是 0否';

View File

@ -103,6 +103,9 @@ public class OrgPersonnelCO {
@ApiModelProperty(value = "是否注册安全工程师(1是2否)")
private Integer registerEngineerFlag;
@ApiModelProperty(value = "是否评价师(1是0否)")
private Integer evaluatorFlag;
@ApiModelProperty(value = "发表著作")
private String publications;

View File

@ -113,6 +113,9 @@ public class OrgPersonnelAddCmd {
@ApiModelProperty(value = "是否注册安全工程师(1是2否)")
private Integer registerEngineerFlag;
@ApiModelProperty(value = "是否评价师(1是0否)")
private Integer evaluatorFlag;
@Size(max = 1000, message = "出版学术专著等长度不能超过1000个字符")
@ApiModelProperty(value = "出版学术专著专利获奖论文等")
private String publications;

View File

@ -115,6 +115,9 @@ public class OrgPersonnelModifyCmd {
@ApiModelProperty(value = "是否注册安全工程师(1是2否)")
private Integer registerEngineerFlag;
@ApiModelProperty(value = "是否评价师(1是0否)")
private Integer evaluatorFlag;
@Size(max = 1000, message = "出版学术专著等长度不能超过1000个字符")
@ApiModelProperty(value = "出版学术专著专利获奖论文等")
private String publications;

View File

@ -100,6 +100,9 @@ public class OrgPersonnelEntity {
/** 是否注册安全工程师(1是2否) */
private Integer registerEngineerFlag;
/** 是否评价师(1是0否) */
private Integer evaluatorFlag;
/** 出版学术专著专利获奖论文等 */
private String publications;

View File

@ -47,6 +47,7 @@ public class OrgPersonnelDO {
private String educationLevelName;
private String titleCodeArr;
private Integer registerEngineerFlag;
private Integer evaluatorFlag;
private String publications;
private String abilityDeclaration;
private String workExperience;

View File

@ -38,7 +38,7 @@
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
`id`, `org_id`, `dept_id`, `post_id`, `user_name`, `account`, `gender_code`, `gender_name`, `birth_date`, `id_card_no`, `current_address`, `office_address`, `education_code`, `education_name`, `graduate_school`, `major`, `employment_status_code`, `employment_status_name`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
`id`, `org_id`, `dept_id`, `post_id`, `user_name`, `account`, `gender_code`, `gender_name`, `birth_date`, `id_card_no`, `current_address`, `office_address`, `education_code`, `education_name`, `graduate_school`, `major`, `employment_status_code`, `employment_status_name`, `evaluator_flag`, `delete_enum`, `remarks`, `create_name`, `update_name`, `tenant_id`, `version`, `create_time`, `update_time`, `create_id`, `update_id`, `env`
</sql>
<!-- 根据人员id列表统计技术负责人和过程控制负责人数量按业务范围分组 -->