Blame view

src/main/java/com/huaheng/pc/system/systable/domain/SysTableFieldInfo.java 1.42 KB
mahuandong authored
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
package com.huaheng.pc.system.systable.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;

/**
 * Created by Enzo Cotter on 2020/3/21.
 */

@Data
@TableName(value = "sys_table_field_info")
public class SysTableFieldInfo implements Serializable {
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;

    /**
     * sys_table_info的主键标识
     */
    @TableField(value = "head_id")
    private Long headId;

    /**
mahuandong authored
28
29
30
31
32
33
     * 表名
     */
    @TableField(value = "table_code")
    private String tableCode;

    /**
mahuandong authored
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
62
63
64
     * 字段名称
     */
    @TableField(value = "field_code")
    private String fieldCode;

    /**
     * 字段的中文名称
     */
    @TableField(value = "filed_name")
    private String filedName;

    /**
     * 字段设计的使用说明
     */
    @TableField(value = "filed_funcation")
    private String filedFuncation;

    @TableField(value = "created")
    private Date created;

    @TableField(value = "created_by")
    private String createdBy;

    @TableField(value = "last_updated")
    private Date lastUpdated;

    @TableField(value = "last_update_by")
    private String lastUpdateBy;

    private static final long serialVersionUID = 1L;
}