ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package jnpf.base.entity;
 
import jnpf.base.entity.SuperExtendEntity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 列表权限
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @date 2019年9月27日 上午9:18
 */
@Data
@TableName("base_module_column")
public class ModuleColumnEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
 
    /**
     * 列表上级
     */
    @TableField("f_parent_id")
    private String parentId;
 
    /**
     * 列表名称
     */
    @TableField("f_full_name")
    private String fullName;
 
    /**
     * 列表编码
     */
    @TableField("f_en_code")
    private String enCode;
 
    /**
     * 绑定表格Id
     */
    @TableField("f_bind_table")
    private String bindTable;
 
    /**
     * 绑定表格描述
     */
    @TableField("f_bind_table_name")
    private String bindTableName;
 
    /**
     * 扩展属性
     */
    @TableField("f_property_json")
    private String propertyJson;
 
    /**
     * 功能主键
     */
    @TableField("f_module_id")
    private String moduleId;
 
    /**
     * 字段规则 主从
     */
    @TableField("f_field_rule")
    private Integer fieldRule;
 
    /**
     * 子表规则key
     */
    @TableField("f_child_table_key")
    private String childTableKey;
 
}