zxl
23 小时以前 933c5dd8ed6715290c6863a8a8d2797582f62af7
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
31
32
33
34
package cn.lili.modules.statistics.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import cn.lili.modules.lmk.enums.general.StatisticsSearchTypeEnum;
/**
 * 统计查询参数
 *
 * @author Bulbasaur
 * @since 2020/12/9 14:20
 */
@Data
public class StatisticsQueryParam {
 
    @ApiModelProperty(value = "快捷搜索", allowableValues = "TODAY, YESTERDAY, LAST_SEVEN, LAST_THIRTY")
    /**
     * @see StatisticsSearchTypeEnum
     */
    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;
 
}