dev:人员资格证书管理v1.1-实体,CO,DO新增字段
parent
16e69a803b
commit
472bc1c430
|
|
@ -43,6 +43,23 @@ public class UserQualificationInfoCO extends ClientObject {
|
||||||
//证书编号
|
//证书编号
|
||||||
@ApiModelProperty(value = "证书编号")
|
@ApiModelProperty(value = "证书编号")
|
||||||
private String certificateNo;
|
private String certificateNo;
|
||||||
|
|
||||||
|
// 资质类型,1-特种作业证书,2-安全人员证书
|
||||||
|
@ApiModelProperty(value = "资质类型,1-特种作业证书,2-安全人员证书")
|
||||||
|
private Integer qualificationinfoType;
|
||||||
|
// 证书作业类别-字典编码
|
||||||
|
@ApiModelProperty(value = "证书作业类别-字典编码")
|
||||||
|
private String qualificationinfoCategory;
|
||||||
|
// 证书作业类别名称
|
||||||
|
@ApiModelProperty(value = "证书作业类别名称")
|
||||||
|
private String qualificationinfoCategoryName;
|
||||||
|
// 操作项目-字典编码(特种有,安全没有)
|
||||||
|
@ApiModelProperty(value = "操作项目-字典编码(特种有,安全没有)")
|
||||||
|
private String operatingProject;
|
||||||
|
// 操作项目名称(特种有,安全没有)
|
||||||
|
@ApiModelProperty(value = "操作项目名称(特种有,安全没有)")
|
||||||
|
private String operatingProjectName;
|
||||||
|
|
||||||
//是否删除
|
//是否删除
|
||||||
@ApiModelProperty(value = "是否删除")
|
@ApiModelProperty(value = "是否删除")
|
||||||
private String deleteEnum;
|
private String deleteEnum;
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,17 @@ public class UserQualificationInfoE extends BaseE {
|
||||||
//证书编号
|
//证书编号
|
||||||
private String certificateNo;
|
private String certificateNo;
|
||||||
|
|
||||||
|
// 资质类型,1-特种作业证书,2-安全人员证书
|
||||||
|
private Integer qualificationinfoType;
|
||||||
|
// 证书作业类别-字典编码
|
||||||
|
private String qualificationinfoCategory;
|
||||||
|
// 证书作业类别名称
|
||||||
|
private String qualificationinfoCategoryName;
|
||||||
|
// 操作项目-字典编码(特种有,安全没有)
|
||||||
|
private String operatingProject;
|
||||||
|
// 操作项目名称(特种有,安全没有)
|
||||||
|
private String operatingProjectName;
|
||||||
|
|
||||||
|
|
||||||
//是否删除
|
//是否删除
|
||||||
private String deleteEnum;
|
private String deleteEnum;
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,22 @@ public class UserQualificationInfoDO extends BaseDO {
|
||||||
@ApiModelProperty(value = "证书编号")
|
@ApiModelProperty(value = "证书编号")
|
||||||
private String certificateNo;
|
private String certificateNo;
|
||||||
|
|
||||||
|
// 资质类型,1-特种作业证书,2-安全人员证书
|
||||||
|
@ApiModelProperty(value = "资质类型,1-特种作业证书,2-安全人员证书")
|
||||||
|
private Integer qualificationinfoType;
|
||||||
|
// 证书作业类别-字典编码
|
||||||
|
@ApiModelProperty(value = "证书作业类别-字典编码")
|
||||||
|
private String qualificationinfoCategory;
|
||||||
|
// 证书作业类别名称
|
||||||
|
@ApiModelProperty(value = "证书作业类别名称")
|
||||||
|
private String qualificationinfoCategoryName;
|
||||||
|
// 操作项目-字典编码(特种有,安全没有)
|
||||||
|
@ApiModelProperty(value = "操作项目-字典编码(特种有,安全没有)")
|
||||||
|
private String operatingProject;
|
||||||
|
// 操作项目名称(特种有,安全没有)
|
||||||
|
@ApiModelProperty(value = "操作项目名称(特种有,安全没有)")
|
||||||
|
private String operatingProjectName;
|
||||||
|
|
||||||
public UserQualificationInfoDO(String userQualificationinfoId) {
|
public UserQualificationInfoDO(String userQualificationinfoId) {
|
||||||
this.userQualificationinfoId = userQualificationinfoId;
|
this.userQualificationinfoId = userQualificationinfoId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue