1、用户证照信息增加岗位ID字段

main
shenzhidan 2026-01-15 17:29:58 +08:00
parent 75a9e86bd1
commit cbcfbd36b8
5 changed files with 14 additions and 0 deletions

View File

@ -84,6 +84,9 @@ public class UserCertificateAddCmd extends Command {
// @NotEmpty(message = "作业类别-操作项目名称-特种设备使用不能为空")
private String assignmentOperatingItemsName;
@ApiModelProperty(value = "岗位ID")
private String postId;
@ApiModelProperty(value = "岗位名称(未定)-主要负责人和安全生产使用", name = "postName", required = true)
// @NotEmpty(message = "岗位名称(未定)-主要负责人和安全生产使用不能为空")
private String postName;

View File

@ -72,6 +72,9 @@ public class UserCertificateUpdateCmd extends Command {
@ApiModelProperty(value = "作业类别-操作项目名称-特种设备使用", name = "assignmentOperatingItemsName", required = true)
// @NotEmpty(message = "作业类别-操作项目名称-特种设备使用不能为空")
private String assignmentOperatingItemsName;
//岗位ID
@ApiModelProperty(value = "岗位ID", name = "postId", required = true)
private String postId;
@ApiModelProperty(value = "岗位名称(未定)-主要负责人和安全生产使用", name = "postName", required = true)
// @NotEmpty(message = "岗位名称(未定)-主要负责人和安全生产使用不能为空")
private String postName;

View File

@ -72,6 +72,9 @@ public class UserCertificateCO extends ClientObject {
//作业类别-操作项目名称-特种设备使用
@ApiModelProperty(value = "作业类别-操作项目名称-特种设备使用")
private String assignmentOperatingItemsName;
//岗位ID
@ApiModelProperty(value = "岗位ID")
private String postId;
//岗位名称(未定)-主要负责人和安全生产使用
@ApiModelProperty(value = "岗位名称(未定)-主要负责人和安全生产使用")
private String postName;

View File

@ -46,6 +46,8 @@ public class UserCertificateE extends BaseE {
private String assignmentOperatingItemsCode;
//作业类别-操作项目名称-特种设备使用
private String assignmentOperatingItemsName;
//岗位ID
private String postId;
//岗位名称(未定)-主要负责人和安全生产使用
private String postName;
//发证日期

View File

@ -69,6 +69,9 @@ public class UserCertificateDO extends BaseDO {
//作业类别-操作项目名称-特种设备使用
@ApiModelProperty(value = "作业类别-操作项目名称-特种设备使用")
private String assignmentOperatingItemsName;
//岗位ID
@ApiModelProperty(value = "岗位ID")
private String postId;
//岗位名称(未定)-主要负责人和安全生产使用
@ApiModelProperty(value = "岗位名称(未定)-主要负责人和安全生产使用")
private String postName;