shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.ishop.model.vo;
 
import java.io.Serializable;
 
/**
 * 我的账户信息
 * @date 2023-09-09
 */
public class MyAccountVo implements Serializable {
 
    public Double getNowMoney() {
        return nowMoney;
    }
 
    public void setNowMoney(Double nowMoney) {
        this.nowMoney = nowMoney;
    }
 
    public Double getRecharge() {
        return recharge;
    }
 
    public void setRecharge(Double recharge) {
        this.recharge = recharge;
    }
 
    public Double getMonetary() {
        return monetary;
    }
 
    public void setMonetary(Double monetary) {
        this.monetary = monetary;
    }
 
    public Boolean getRechargeSwitch() {
        return rechargeSwitch;
    }
 
    public void setRechargeSwitch(Boolean rechargeSwitch) {
        this.rechargeSwitch = rechargeSwitch;
    }
 
    //    @ApiModelProperty(value = "账户余额")
    private Double nowMoney;
 
//    @ApiModelProperty(value = "累计充值金额")
    private Double recharge;
 
//    @ApiModelProperty(value = "消费金额")
    private Double monetary;
 
//    @ApiModelProperty(value = "充值开关")
    private Boolean rechargeSwitch;
}