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