|
|
|
@ -6,6 +6,7 @@ import lombok.Getter; |
|
|
|
import lombok.Setter; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
|
|
|
|
@Getter |
|
|
|
@ -13,20 +14,20 @@ import java.io.Serializable; |
|
|
|
@ApiModel("收益响应体") |
|
|
|
public class ProfitVo implements Serializable { |
|
|
|
|
|
|
|
@ApiModelProperty(value="昨日广告收益(单位毫分)") |
|
|
|
private Integer yesterdayProfit; |
|
|
|
@ApiModelProperty(value="昨日广告收益") |
|
|
|
private BigDecimal yesterdayAdProfit; |
|
|
|
|
|
|
|
@ApiModelProperty(value="昨日邀请收益(单位毫分)") |
|
|
|
private Integer yesterdayInviteProfit; |
|
|
|
@ApiModelProperty(value="昨日邀请收益") |
|
|
|
private BigDecimal yesterdayInviteProfit; |
|
|
|
|
|
|
|
@ApiModelProperty(value="累计收益(单位毫分)") |
|
|
|
private Integer totalProfit; |
|
|
|
@ApiModelProperty(value="累计收益") |
|
|
|
private BigDecimal totalProfit; |
|
|
|
|
|
|
|
@ApiModelProperty(value="上月收益(单位毫分)") |
|
|
|
private Integer lastMonthProfit; |
|
|
|
@ApiModelProperty(value="上月收益") |
|
|
|
private BigDecimal lastMonthProfit; |
|
|
|
|
|
|
|
@ApiModelProperty(value="当月收益(单位毫分)") |
|
|
|
private Integer thisMonthProfit; |
|
|
|
@ApiModelProperty(value="当月收益") |
|
|
|
private BigDecimal thisMonthProfit; |
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
} |
|
|
|
|