zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package com.changhong.epc.bean.tenant.log;
Z 2
3 import com.changhong.epc.bean.form.FormType;
4 import com.changhong.epc.constter.base.BaseBean;
5 import lombok.Data;
6 import lombok.EqualsAndHashCode;
7
8 import javax.persistence.Column;
9 import javax.persistence.Table;
10 import java.io.Serializable;
11 import java.util.Date;
12
13 /**
14  * 预算回写log
15  * @ClassName: MasterValue
16  * @author [九鼎联合科技]
17  * @date 2017年08月28日 上午11:52:33
18  */
19 @Table(name="epc_budget_log_{rule}")
20 @Data
21 @EqualsAndHashCode(callSuper=true)
22 public class BudgetLog extends BaseBean implements Serializable {
23
24     private static final long serialVersionUID = 1L;
25
26     /**
27      * 预算id
28      * 表字段:budget_id
29      */
30     @Column(name="budget_id")
31     private Integer budgetId;
32
33     /**
34      * 预算明细id
35      * 表字段:budget_child_id
36      */
37     @Column(name="budget_child_id")
38     private Integer budgetChildId;
39
40     /**
41      * 变更类型
42      * 表字段:update_type
43      */
44     @Column(name="update_type")
45     private BudgetUpdateType updateType;
46
47     /**
48      * 变更内容
49      * 表字段:update_text
50      */
51     @Column(name="update_text")
52     private String updateText;
53
54     /**
55      * 原始内容
56      * 表字段:original_text
57      */
58     @Column(name="original_text")
59     private String originalText;
60
61     /**
62      * 变更来源类型
63      * 表字段:update_source_type
64      */
65     @Column(name="update_source_type")
66     private FormType updateSourceType;
67
68     /**
69      * 变更来源表单id
70      * 表字段:update_source_formid
71      */
72     @Column(name="update_source_formid")
73     private String updateSourceFormid;
74
75     /**
76      * 变更来源id
77      * 表字段:update_source_id
78      */
79     @Column(name="update_source_id")
80     private Integer updateSourceId;
81
82     /**
83      * 变更来源子id
84      * 表字段:update_source_child_id
85      */
86     @Column(name="update_source_child_id")
87     private Integer updateSourceChildId;
88
89     /**
90      * 变更来源编号
91      * 表字段:update_source_number
92      */
93     @Column(name="update_source_number")
94     private String updateSourceNumber;
95
96     /**
97      * 变更来源内容
98      * 表字段:update_source_text
99      */
100     @Column(name="update_source_text")
101     private String updateSourceText;
102
103     /**
104      * 变更时间
105      * 表字段:update_date
106      */
107     @Column(name="update_date")
108     private Date updateDate;
109
110
111     /**
112      * 关联变更来源表单id
113      * 表字段:join_source_formid
114      */
115     @Column(name="join_source_formid")
116     private String joinSourceFormid;
117
118     /**
119      * 关联变更来源id
120      * 表字段:join_source_id
121      */
122     @Column(name="join_source_id")
123     private Integer joinSourceId;
124
125     /**
126      * 关联变更来源编号
127      * 表字段:join_source_number
128      */
129     @Column(name="join_source_number")
130     private String joinSourceNumber;
131
132     /**
133      * 关联变更来源内容
134      * 表字段:join_source_text
135      */
136     @Column(name="join_source_text")
137     private String joinSourceText;
138
139
140 }