WithdrawalAmountVo.java 922 Bytes
Newer Older
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
package cn.wisenergy.model.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.math.BigDecimal;

/**
 * @author 86187
 * @ Description: 钱包可提现Vo
 * @ Author     : 86187
 * @ Date       : 2021/3/2 16:10
 */
@Data
@ApiModel("WithdrawalAmountVo")
public class WithdrawalAmountVo {

    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id", name = "userId")
    private String userId;

    /**
     * 上月未提
     */
28
    @ApiModelProperty(value = "上月未提", name = "lastMoneyNot")
29 30 31 32 33
    private BigDecimal lastMoneyNot;

    /**
     * 本月可提现
     */
34
    @ApiModelProperty(value = "本月可提现", name = "currentMoneyCan")
35
    private BigDecimal currentMoneyCan;
36 37


38 39 40 41 42 43 44
    /**
     * 提现规则
     */
    @ApiModelProperty(value = "提现规则", name = "withdrawRule")
    private String withdrawRule;


45
}