Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package com.ibeetl.admin.core.entity;
 
import com.ibeetl.admin.core.util.ValidateConfig;
import org.beetl.sql.core.annotatoin.AutoID;
import org.beetl.sql.core.annotatoin.InsertIgnore;
import org.beetl.sql.core.annotatoin.LogicDelete;
import org.beetl.sql.core.annotatoin.SeqID;
 
import javax.validation.constraints.NotNull;
 
 
/* 
* 账户信息表
* gen by Spring Boot2 Admin 2019-12-24
*/
public class XzxAccountInfo extends BaseEntity{
 
    @NotNull(message = "ID不能为空", groups =ValidateConfig.UPDATE.class)
    @SeqID(name = ORACLE_CORE_SEQ_NAME)
    @AutoID    
 
    private String accountId ;
    
    //账户名称
 
    private String accountName ;
    
 
    private String userId ;
    
    //支付密码(已加密)
 
    private String payPassword ;
    
    //账户余额
 
    private String money ;
    
    //冻结金额
 
    private String freezeMoney ;
    
    //可提现金额
 
    private String withdrawMoney ;
    
    //透支额度
 
    private String overdraftLimit ;
    
 
    private String lockTime ;
    
    //0正常 1删除
    /*逻辑删除标志*/
    @InsertIgnore
    @LogicDelete(value = 1)
 
    private Integer delFlag ;
    
    //密码输入错误次数
 
    private Integer errorTimes ;
    
    //最后一次密码输错时间
 
    private String lastErrorTime ;
    
 
    private String fixedLimit ;
    
    public XzxAccountInfo(){
    }
 
    public String getAccountId(){
        return  accountId;
    }
    public void setAccountId(String accountId){
        this.accountId = accountId;
    }
 
    /**账户名称
    *@return 
    */
    public String getAccountName(){
        return  accountName;
    }
    /**账户名称
    *@param  accountName
    */
    public void setAccountName(String accountName){
        this.accountName = accountName;
    }
 
    public String getUserId(){
        return  userId;
    }
    public void setUserId(String userId){
        this.userId = userId;
    }
 
    /**支付密码(已加密)
    *@return 
    */
    public String getPayPassword(){
        return  payPassword;
    }
    /**支付密码(已加密)
    *@param  payPassword
    */
    public void setPayPassword(String payPassword){
        this.payPassword = payPassword;
    }
 
    /**账户余额
    *@return 
    */
    public String getMoney(){
        return  money;
    }
    /**账户余额
    *@param  money
    */
    public void setMoney(String money){
        this.money = money;
    }
 
    /**冻结金额
    *@return 
    */
    public String getFreezeMoney(){
        return  freezeMoney;
    }
    /**冻结金额
    *@param  freezeMoney
    */
    public void setFreezeMoney(String freezeMoney){
        this.freezeMoney = freezeMoney;
    }
 
    /**可提现金额
    *@return 
    */
    public String getWithdrawMoney(){
        return  withdrawMoney;
    }
    /**可提现金额
    *@param  withdrawMoney
    */
    public void setWithdrawMoney(String withdrawMoney){
        this.withdrawMoney = withdrawMoney;
    }
 
    /**透支额度
    *@return 
    */
    public String getOverdraftLimit(){
        return  overdraftLimit;
    }
    /**透支额度
    *@param  overdraftLimit
    */
    public void setOverdraftLimit(String overdraftLimit){
        this.overdraftLimit = overdraftLimit;
    }
 
    public String getLockTime(){
        return  lockTime;
    }
    public void setLockTime(String lockTime){
        this.lockTime = lockTime;
    }
 
    /**0正常 1删除
    *@return 
    */
    public Integer getDelFlag(){
        return  delFlag;
    }
    /**0正常 1删除
    *@param  delFlag
    */
    public void setDelFlag(Integer delFlag){
        this.delFlag = delFlag;
    }
 
    /**密码输入错误次数
    *@return 
    */
    public Integer getErrorTimes(){
        return  errorTimes;
    }
    /**密码输入错误次数
    *@param  errorTimes
    */
    public void setErrorTimes(Integer errorTimes){
        this.errorTimes = errorTimes;
    }
 
    /**最后一次密码输错时间
    *@return 
    */
    public String getLastErrorTime(){
        return  lastErrorTime;
    }
    /**最后一次密码输错时间
    *@param  lastErrorTime
    */
    public void setLastErrorTime(String lastErrorTime){
        this.lastErrorTime = lastErrorTime;
    }
 
    public String getFixedLimit(){
        return  fixedLimit;
    }
    public void setFixedLimit(String fixedLimit){
        this.fixedLimit = fixedLimit;
    }
 
 
}