package com.xzx.gc.model.user;
|
|
import com.github.pagehelper.PageInfo;
|
import com.xzx.gc.common.constant.Constants;
|
import com.xzx.gc.model.pay.PayInfoVo;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class MoneyDetailVo{
|
@ApiModelProperty(value = "创建用户ID", name = "createUserId")
|
private String createUserId;
|
|
@ApiModelProperty(value = "回收次数", name = "recycleCount")
|
private String recycleCount;
|
|
@ApiModelProperty("回收重量")
|
private String recycleWeight;
|
|
@ApiModelProperty(value = "代丢次数", name = "throwCount")
|
private String throwCount;
|
|
@ApiModelProperty(value = "回收总金额", name = "recycleSumMoney")
|
private String recycleSumMoney;
|
|
@ApiModelProperty(value = "代丢总金额", name = "throwSumMoney")
|
private String throwSumMoney;
|
|
@ApiModelProperty(value = "邀请次数", name = "inviteCount")
|
private String inviteCount;
|
@ApiModelProperty(value = "邀请获得的总金额", name = "inviteCount")
|
private String inviteMoney;
|
|
|
@ApiModelProperty(value = "总次数", name = "sumCount")
|
private String sumCount;
|
|
@ApiModelProperty(value = "总金额", name = "sumMoney")
|
private String sumMoney;
|
|
@ApiModelProperty(value = "提现总次数", name = "sumWithdrawCount")
|
private String sumWithdrawCount;
|
|
@ApiModelProperty(value = "提现总金额", name = "sumWithdrawMoney")
|
private String sumWithdrawMoney="0.00";
|
|
// @ApiModelProperty(value = "支付明细列表", name = "payInfoList")
|
// private List<PayInfoVo> payInfoList;
|
|
@ApiModelProperty(value = "分页支付明细列表", name = "payInfoList")
|
private PageInfo<PayInfoVo> payInfoList;
|
|
@ApiModelProperty(value = "领取红包次数")
|
private int redpaperCount=0;
|
|
@ApiModelProperty(value = "领取红包总金额")
|
private String redpaperMoney;
|
|
@ApiModelProperty(value = "用户返利次数")
|
private int rebateCount=0;
|
|
@ApiModelProperty(value = "用户返利总金额")
|
private BigDecimal rebateMoney=Constants.MONEY_INIT;
|
|
|
@ApiModelProperty(value = "回收员重量返利支出总金额")
|
private String weightMul="0.00";
|
|
|
|
@ApiModelProperty("最新余额")
|
private String balance;
|
|
@ApiModelProperty("最新可用额度")
|
private String overdraftLimit;
|
|
@ApiModelProperty("最新固定额度")
|
private String fixedLimit;
|
|
|
public String getRecycleCount() {
|
return recycleCount==null?"0":recycleCount;
|
}
|
|
public String getThrowCount() {
|
return throwCount==null?"0":throwCount;
|
}
|
|
public String getRecycleSumMoney() {
|
return recycleSumMoney==null?"0":recycleSumMoney;
|
}
|
|
public String getThrowSumMoney() {
|
return throwSumMoney==null?"0":throwSumMoney;
|
}
|
|
public String getInviteCount() {
|
return inviteCount==null?"0":inviteCount;
|
}
|
|
public String getSumCount() {
|
return sumCount==null?"0":sumCount;
|
}
|
|
public String getSumMoney() {
|
return sumMoney==null?"0":sumMoney;
|
}
|
|
public String getSumWithdrawCount() {
|
return sumWithdrawCount==null?"0":sumWithdrawCount;
|
}
|
|
public String getSumWithdrawMoney() {
|
return sumWithdrawMoney==null?"0":sumWithdrawMoney;
|
}
|
|
}
|