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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package jnpf.base.entity;
 
import jnpf.base.entity.SuperEntity;
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")
public class ModuleEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
 
    /**
     * 功能上级
     */
    @TableField("f_parent_id")
    private String parentId="0";
 
    /**
     * 功能类别
     * 1-目录 2-页面 3-功能 4-字典 5-报表(原) 6-大屏 7-外链 8-门户, 9-流程,10-报表,11-回传
     */
    @TableField("f_type")
    private Integer type;
 
    /**
     * 功能名称
     */
    @TableField("f_full_name")
    private String fullName;
 
    /**
     * 功能编码
     */
    @TableField("f_en_code")
    private String enCode;
 
    /**
     * 功能地址
     */
    @TableField("f_url_address")
    private String urlAddress;
 
    /**
     * 页面地址
     */
    @TableField("f_page_address")
    private String pageAddress;
 
    /**
     * 按钮权限
     */
    @TableField("f_is_button_authorize")
    private Integer isButtonAuthorize;
 
    /**
     * 列表权限
     */
    @TableField("f_is_column_authorize")
    private Integer isColumnAuthorize;
 
    /**
     * 数据权限
     */
    @TableField("f_is_data_authorize")
    private Integer isDataAuthorize;
 
    /**
     * 表单权限
     */
    @TableField("f_is_form_authorize")
    private Integer isFormAuthorize;
 
    /**
     * 扩展属性
     */
    @TableField("f_property_json")
    private String propertyJson;
 
    /**
     * 菜单图标
     */
    @TableField("f_icon")
    private String icon;
    /**
     * 链接目标
     */
    @TableField("f_link_target")
    private String linkTarget;
    /**
     * 菜单分类 Web、App
     */
    @TableField("f_category")
    private String category;
    /**
     * 关联功能id
     */
    @TableField("f_module_id")
    private String moduleId;
 
    /**
     * 关联系统id
     */
    @TableField("f_system_id")
    private String systemId;
 
}