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