package com.nova.sankuai.domain.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @author weikangdi * @create 2021/11/15 */ @ApiModel(value = "欢迎页列表数据") @Data public class WelcomePageHistory { @ApiModelProperty(value = "日期") private String date; @ApiModelProperty(value = "消耗金额") private Double expendAmount; @ApiModelProperty(value = "当日推送客户数") private Integer customerCount; }