xiangpei
2025-05-27 f2cc79e9e83aafacc1af0e2c86e3c8df384fc895
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
package cn.lili.modules.statistics.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 统计查询参数
 *
 * @author Bulbasaur
 * @since 2020/12/9 14:20
 */
@Data
public class StatisticsQueryParam {
 
    @ApiModelProperty(value = "快捷搜索", allowableValues = "TODAY, YESTERDAY, LAST_SEVEN, LAST_THIRTY")
    private String searchType;
 
    @ApiModelProperty(value = "类型:年(YEAR)、月(MONTH)")
    private String timeType;
 
    @ApiModelProperty(value = "年份")
    private Integer year;
 
    @ApiModelProperty(value = "月份")
    private Integer month;
 
    @ApiModelProperty(value = "店铺ID")
    private String storeId;
 
}