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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package jnpf.tmsEntity;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 培训地点 tms_place
 */
@Data
@TableName("tms_place")
public class TmsPlaceEntity {
 
    @TableId("f_id")
    private String id;
 
    @TableField(value = "f_tenant_id", fill = FieldFill.INSERT)
    private String tenantId;
 
    @TableField("place_no")
    private String placeNo;
 
    @TableField("place_name")
    private String placeName;
 
    @TableField("place_group")
    private String placeGroup;
 
    @TableField("enabled")
    private String enabled;
 
    @TableField("remark")
    private String remark;
 
    @TableField(value = "f_creator_user_id", fill = FieldFill.INSERT)
    private String creatorUserId;
 
    @TableField(value = "f_creator_time", fill = FieldFill.INSERT)
    private Date creatorTime;
 
    @TableField(value = "f_last_modify_user_id", fill = FieldFill.UPDATE)
    private String lastModifyUserId;
 
    @TableField(value = "f_last_modify_time", fill = FieldFill.UPDATE)
    private Date lastModifyTime;
 
    @TableLogic
    @TableField("f_delete_mark")
    private Integer deleteMark;
 
    @TableField("f_delete_user_id")
    private String deleteUserId;
 
    @TableField("f_delete_time")
    private Date deleteTime;
}