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
package jnpf.base.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * 系统
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2019年9月27日 上午9:18
 */
@Data
@TableName("base_system")
public class SystemEntity extends SuperExtendEntity.SuperExtendDEEntity<String> {
    /**
     * 系统名称
     */
    @TableField("F_FULL_NAME")
    private String fullName;
 
    /**
     * 系统编号
     */
    @TableField("F_EN_CODE")
    private String enCode;
 
    /**
     * 门户数组
     */
    @TableField("F_PORTAL_ID")
    private String portalId;
 
    /**
     * app门户数组
     */
    @TableField("F_APP_PORTAL_ID")
    private String appPortalId;
 
    /**
     * 系统图标
     */
    @TableField("F_ICON")
    private String icon;
 
    /**
     * 是否是主系统(0-不是,1-是)
     */
    @TableField("F_IS_MAIN")
    private Integer isMain;
 
    /**
     * 扩展属性
     */
    @TableField("F_PROPERTY_JSON")
    private String propertyJson;
 
    /**
     * 偏好配置
     */
    @TableField("F_PREFERENCE_JSON")
    private String preferenceJson;
 
    /**
     * 图标背景色
     */
    @TableField("F_BACKGROUND_COLOR")
    private String backgroundColor;
 
    /**
     * 所属用户
     */
    @TableField("F_USER_ID")
    private String userId;
 
    /**
     * 授权id列表
     */
    @TableField("F_AUTHORIZE_ID")
    private String authorizeId;
 
}