TaxRateVo.java 582 Bytes
Newer Older
licc's avatar
licc committed
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;

/**
 * @author 86187
 * @ Description:  提现税率Vo
 * @ Author     : 86187
 * @ Date       : 2021/3/15 15:24
 */
@Data
@ApiModel("TaxRateVo")
public class TaxRateVo  {
    /**
     * 实际金额
     */
    @ApiModelProperty(value = "实际金额", name = "actualMoney")
    private Double actualMoney;

    /**
     * 税款金额
     */
    @ApiModelProperty(value = "税款金额", name = "taxMoney")
    private Double taxMoney;
}