UserAndRecommendVo.java 417 Bytes
Newer Older
codezwjava's avatar
codezwjava 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 lombok.Data;

import java.math.BigDecimal;

@Data
@ApiModel("UserAndRecommendVo")
public class UserAndRecommendVo {

    /**
     * 用户id
     */
    private String userId;

    /**
     * 当月消费金额
     */
    private BigDecimal monthyCount;

    /**
     * 累计消费金额
     */
    private BigDecimal historyCount;

}