sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
}