package cn.iocoder.yudao.module.hrm.controller.admin.certificate.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.time.LocalDate;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - HRM 证书资质 Response VO")
|
@Data
|
public class HrmCertificateRespVO {
|
|
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
private Long id;
|
|
@Schema(description = "员工编号", example = "1")
|
private Long employeeId;
|
|
@Schema(description = "员工姓名", example = "张三")
|
private String employeeName;
|
|
@Schema(description = "证书类型", example = "1")
|
private Integer certType;
|
|
@Schema(description = "证书类型名称", example = "特种作业证书")
|
private String certTypeName;
|
|
@Schema(description = "证书名称", example = "高压电工特种作业操作证")
|
private String certName;
|
|
@Schema(description = "证书编号", example = "T2019-0001")
|
private String certNo;
|
|
@Schema(description = "发证机构", example = "国家能源局")
|
private String issueOrg;
|
|
@Schema(description = "发证日期")
|
private LocalDate issueDate;
|
|
@Schema(description = "有效期至")
|
private LocalDate expireDate;
|
|
@Schema(description = "到期状态(0=有效,1=即将到期,2=已过期)")
|
private Integer expireStatus;
|
|
@Schema(description = "备注", example = "备注")
|
private String remark;
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
private LocalDateTime createTime;
|
|
}
|