liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package jnpf.tmsEntity.record;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
@Data
public class TmsRecordForm {
 
    @Schema(description = "主键")
    private String id;
 
    @Schema(description = "记录编号")
    private String recordNo;
 
    @Schema(description = "任务ID")
    private String taskId;
 
    @Schema(description = "任务编号")
    private String taskNo;
 
    @Schema(description = "培训分类")
    private String category;
 
    @Schema(description = "培训主题")
    private String subject;
 
    @Schema(description = "培训师用户ID")
    private String teacherId;
 
    @Schema(description = "培训师姓名")
    private String trainerName;
 
    @Schema(description = "培训类型")
    private String trainType;
 
    @Schema(description = "培训方式")
    private String trainMode;
 
    @Schema(description = "考核方式")
    private String evalMode;
 
    @Schema(description = "开始时间")
    private String startTime;
 
    @Schema(description = "结束时间")
    private String endTime;
 
    @Schema(description = "关闭时间")
    private String closeTime;
 
    @Schema(description = "归档状态")
    private String archiveStatus;
 
    @Schema(description = "签到率")
    private Integer signRate;
 
    @Schema(description = "合格率")
    private Integer passRate;
 
    @Schema(description = "培训要点")
    private String keyPoints;
 
    @Schema(description = "培训地点")
    private String placeName;
 
    @Schema(description = "培训对象姓名串")
    private String trainees;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "附件")
    private List<TmsRecordAttachmentForm> attachments;
 
    @Schema(description = "参加人员")
    private List<TmsRecordParticipantForm> participants;
 
    @Schema(description = "签到名单")
    private List<TmsRecordSignForm> signList;
}