Helius
2021-06-23 b8ca59259b0690f664ee70ecca69dfb53700c653
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
package com.xzx.gc.model.user;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class AccountVo{
    @ApiModelProperty(value = "账户ID")
    private String accountId;
 
    @ApiModelProperty(value = "账户名称")
    private String accountName;
 
    @ApiModelProperty(value = "支付密码,true代表存在 空代表不存在")
    private String payPassword;
 
    @ApiModelProperty(value = "用户ID")
    private String userId;
 
    @ApiModelProperty(value = "余额")
    private String money;
 
    @ApiModelProperty(value = "冻结金额")
    private String freezeMoney;
 
    @ApiModelProperty(value = "可提现金额")
    private String withdrawMoney;
 
    @ApiModelProperty(value = "透支额度")
    private String overdraftLimit;
 
    @ApiModelProperty(value = "锁定历时")
    private String lockTime;
 
    @ApiModelProperty(value = "密码输入错误次数")
    private Integer errorTimes;
 
    @ApiModelProperty(value = "最后一次密码输错时间")
    private String lastErrorTime;
 
    @ApiModelProperty(value = "回收员完成订单数")
    private String recycleCompleteOrderCount;
 
    @ApiModelProperty(value = "今日回收重量")
    private String weightToday;
    @ApiModelProperty(value = "累计回收重量")
    private String weightAll;
    @ApiModelProperty(value = "今日回收金额")
    private String moneyToday;
    @ApiModelProperty(value = "累计回收金额")
    private String moneyAll;
 
 
    private String fixedLimit;
    private Short adjustFlag;
    @ApiModelProperty("未结算提成")
    private String notPay;
 
    @ApiModelProperty("积分")
    private String collectScore;
 
    public String getMoney() {
        return money==null?"0":money;
    }
 
    public String getFreezeMoney() {
        return freezeMoney==null?"0":freezeMoney;
    }
 
    public String getWithdrawMoney() {
        return withdrawMoney==null?"0":withdrawMoney;
    }
 
    public String getOverdraftLimit() {
        return overdraftLimit==null?"0":overdraftLimit;
    }
 
    public String getRecycleCompleteOrderCount() {
        return recycleCompleteOrderCount==null?"0":recycleCompleteOrderCount;
    }
 
    public Integer getErrorTimes() {
        return errorTimes;
    }
 
    public void setErrorTimes(Integer errorTimes) {
        this.errorTimes = errorTimes;
    }
}