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
package jnpf.tmsEntity.trainmode;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 培训方式表单 / 列表项
 */
@Data
public class TmsTrainModeForm {
 
    @Schema(description = "主键")
    private String id;
 
    @Schema(description = "方式编码")
    private String modeCode;
 
    @Schema(description = "方式名称")
    private String modeName;
 
    @Schema(description = "签到规则 scan/both")
    private String signRule;
 
    @Schema(description = "允许名单外签到 0/1")
    private String allowGuestSign;
 
    @Schema(description = "起止须同一天 0/1")
    private String sameDayRequired;
 
    @Schema(description = "地点必填 0/1(任务选地点来自培训地点管理)")
    private String placeRequired;
 
    @Schema(description = "排序")
    private Integer sortNo;
 
    @Schema(description = "启用状态 0/1")
    private String enabled;
 
    @Schema(description = "备注")
    private String remark;
}