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;
|
}
|