AccumulatedIncomeVo.java 743 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 28 29 30 31 32 33 34 35 36 37
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:26
 */
@Data
@ApiModel("AccumulatedIncomeVo")
public class AccumulatedIncomeVo {

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

    /**
     * 时间 年月
     */
    @ApiModelProperty(value = "时间 年月", name = "yearMonth")
    private String yearMonth;

    /**
     * 收益
     */
    @ApiModelProperty(value = "收益", name = "income")
    private BigDecimal income;

}