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