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
package jnpf.base.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 打印模板-实体类
 *
 * @author JNPF开发平台组 YY
 * @version V3.2.0
 * @copyright 引迈信息技术有限公司
 * @date 2019年9月30日
 */
@Data
@EqualsAndHashCode
@TableName("base_print_template")
public class PrintDevEntity extends SuperExtendEntity.SuperExtendDescriptionEntity<String> {
 
    /**
     * 名称
     */
    @TableField("F_FULL_NAME")
    private String fullName;
 
    /**
     * 编码
     */
    @TableField("F_EN_CODE")
    private String enCode;
 
    /**
     * 分类
     */
    @TableField("F_CATEGORY")
    private String category;
 
 
    /**
     * 状态:0-未发布,1-已发布,2-已修改
     */
    @TableField("F_STATE")
    private Integer state;
 
 
    /**
     * 通用-将该模板设为通用(0-表单用,1-业务打印模板用)
     */
    @TableField("F_COMMON_USE")
    private Integer commonUse;
 
    /**
     * 发布范围:1-公开,2-权限设置
     */
    @TableField("F_VISIBLE_TYPE")
    private Integer visibleType;
 
    /**
     * 图标
     */
    @TableField("F_ICON")
    private String icon;
 
    /**
     * 图标颜色
     */
    @TableField("F_ICON_BACKGROUND")
    private String iconBackground;
 
    /**
     * 系统id
     */
    @TableField("F_SYSTEM_ID")
    private String systemId;
}