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
package jnpf.base.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 单据规则
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
 * @date 2019年9月27日 上午9:18
 */
@Data
@TableName("base_bill_rule")
public class BillRuleEntity extends SuperExtendEntity.SuperExtendDEEntity<String> implements Serializable {
 
    /**
     * 单据名称
     */
    @TableField("f_full_name")
    private String fullName;
 
    /**
     * 单据编码
     */
    @TableField("f_en_code")
    private String enCode;
 
    /**
     * 单据前缀
     */
    @TableField("f_prefix")
    private String prefix;
 
    /**
     * 日期格式
     */
    @TableField("f_date_format")
    private String dateFormat;
 
    /**
     * 流水位数
     */
    @TableField("f_digit")
    private Integer digit;
 
    /**
     * 流水起始
     */
    @TableField("f_start_number")
    private String startNumber;
 
    /**
     * 流水范例
     */
    @TableField("f_example")
    private String example;
 
    /**
     * 当前流水号
     */
    @TableField(value = "f_this_number", updateStrategy = FieldStrategy.ALWAYS)
    private Integer thisNumber;
 
    /**
     * 输出流水号
     */
    @TableField(value = "f_output_number",updateStrategy = FieldStrategy.ALWAYS)
    private String outputNumber;
 
    /**
     * 分类
     */
    @TableField("f_category")
    private  String category;
 
    /**
     * 方式 1-时间格式,2-随机数编号,3-UUID
     */
    @TableField("f_type")
    private Integer type;
 
    /**
     * 随机数位数
     */
    @TableField("f_random_digit")
    private Integer randomDigit;
 
    /**
     * 随机数类型
     */
    @TableField("f_random_type")
    private Integer randomType;
 
    /**
     * 单据后缀
     */
    @TableField("f_suffix")
    private String suffix;
 
}