huangzhen
2023-09-15 ea09629d8857e0afa329858f72cf1c93e25b813c
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.gkhy.exam.coalmine.entity;
 
import java.time.LocalDateTime;
 
import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.data.annotation.Id;
 
@Data
@TableName("emon_train_record")
public class EmonTrainRecord implements Serializable {
 
    @Id
    @TableId(type = IdType.AUTO)
    private Long id;
 
        
    private LocalDateTime reportTime;
 
        
    private Long districtId;
 
        
    private String examCenter;
 
        
    private String excType;
 
    //是否为煤矿:0为非,1是    
    private Byte isCm;
 
    private String excImage;
 
    //删除标志(0代表存在 2代表删除)
    private Byte delFlag;
 
    /** 创建者 */
    @TableField(fill = FieldFill.INSERT)
    private String createBy;
 
    /** 创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    /** 更新者 */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private String updateBy;
 
    /** 更新时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
}