import
parent
a49943078e
commit
a0d18e1bce
|
|
@ -20,7 +20,7 @@ public class QualFilingDetailCO extends QualFilingCO {
|
|||
private QualFilingCommitmentCO commitment;
|
||||
|
||||
@ApiModelProperty(value = "备案申请人员列表")
|
||||
private List<QualFilingPersonnelCO> personnelList;
|
||||
private List<QualFilingPersonnelInfoCO> personnelList;
|
||||
|
||||
@ApiModelProperty(value = "备案申请装备列表")
|
||||
private List<QualFilingEquipmentCO> equipmentList;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,49 @@
|
|||
package org.qinan.safetyeval.client.co;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 备案申请人员CO(Client Object)
|
||||
*
|
||||
* @author safety-eval
|
||||
*/
|
||||
@Data
|
||||
public class QualFilingPersonnelInfoCO {
|
||||
|
||||
@ApiModelProperty(value = "主键ID")
|
||||
private Long id;
|
||||
|
||||
@ApiModelProperty(value = "备案ID")
|
||||
private Long filingId;
|
||||
|
||||
@ApiModelProperty(value = "原始人员ID")
|
||||
private Long sourcePersonnelId;
|
||||
|
||||
@ApiModelProperty(value = "人员姓名")
|
||||
private String personName;
|
||||
|
||||
@ApiModelProperty(value = "职位名称")
|
||||
private String positionName;
|
||||
|
||||
@ApiModelProperty(value = "性别编码(1男2女)")
|
||||
private Integer genderCode;
|
||||
|
||||
@ApiModelProperty(value = "性别名称")
|
||||
private String genderName;
|
||||
|
||||
@ApiModelProperty(value = "出生日期")
|
||||
private LocalDate birthDate;
|
||||
|
||||
@ApiModelProperty(value = "是否注册安全工程师(1是2否)")
|
||||
private Integer registerEngineerFlag;
|
||||
|
||||
@ApiModelProperty(value = "评价师证书编号")
|
||||
private String evaluatorCertNo;
|
||||
|
||||
@ApiModelProperty(value = "能力codeList")
|
||||
private List<String> professionalCapabilityCodeList;
|
||||
}
|
||||
Loading…
Reference in New Issue