xiaoyi
3 天以前 abf1c0a35d85d38239ff5d2ed746a4e4b797c9d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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;
 
}