| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import cn.lili.modules.lmk.enums.general.StatisticsSearchTypeEnum; |
| | | /** |
| | | * 统计查询参数 |
| | | * |
| | |
| | | public class StatisticsQueryParam { |
| | | |
| | | @ApiModelProperty(value = "快捷搜索", allowableValues = "TODAY, YESTERDAY, LAST_SEVEN, LAST_THIRTY") |
| | | /** |
| | | * @see StatisticsSearchTypeEnum |
| | | */ |
| | | private String searchType; |
| | | |
| | | @ApiModelProperty(value = "类型:年(YEAR)、月(MONTH)") |
| | |
| | | @ApiModelProperty(value = "店铺ID") |
| | | private String storeId; |
| | | |
| | | @ApiModelProperty(value = "类型:商品goods 、视频video") |
| | | private String currentType; |
| | | |
| | | @ApiModelProperty(value = "显示排名:10,20,30") |
| | | private Integer currentLimit; |
| | | |
| | | } |