package jnpf.tmsEntity.course;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class TmsCourseForm {
|
|
@Schema(description = "主键")
|
private String id;
|
|
@Schema(description = "课程编号")
|
private String courseNo;
|
|
@Schema(description = "课程名称")
|
private String courseName;
|
|
@Schema(description = "课程分类")
|
private String category;
|
|
@Schema(description = "培训方式编码")
|
private String trainMode;
|
|
@Schema(description = "考核方式编码")
|
private String evalMode;
|
|
@Schema(description = "关联试卷ID")
|
private String paperId;
|
|
@Schema(description = "关联试卷名称")
|
private String paperName;
|
|
@Schema(description = "学时")
|
private BigDecimal hours;
|
|
@Schema(description = "启用状态 0/1")
|
private String enabled;
|
|
@Schema(description = "备注")
|
private String remark;
|
}
|