3 天以前 b852254d90e7d1955db31db154193ec8ee84d8b3
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
package cn.iocoder.yudao.module.hrm.controller.admin.training.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - HRM 培训参训人员 Response VO")
@Data
public class HrmTrainingParticipantRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long id;
 
    @Schema(description = "培训活动编号", example = "1")
    private Long trainingId;
 
    @Schema(description = "员工编号", example = "1")
    private Long employeeId;
 
    @Schema(description = "员工工号", example = "EMP202401010001")
    private String employeeNo;
 
    @Schema(description = "员工姓名", example = "张三")
    private String employeeName;
 
    @Schema(description = "是否实际参加(0=未参加,1=参加)", example = "true")
    private Boolean attended;
 
    @Schema(description = "考核成绩", example = "90")
    private BigDecimal score;
 
    @Schema(description = "是否合格(0=不合格,1=合格)", example = "true")
    private Boolean isPass;
 
    @Schema(description = "联动生成的证书编号(为空表示尚未发证)", example = "1")
    private Long certificateId;
 
    @Schema(description = "备注", example = "备注")
    private String remark;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}