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;
|
}
|