xiangpei
2025-06-16 37de2f51fe9cecc71e38e44c9c00eb4e58dcccb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cn.lili.modules.statistics.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 商品统计查询参数
 *
 * @author Chopper
 * @since 2020/11/17 7:34 下午
 */
@Data
public class GoodsStatisticsQueryParam extends StatisticsQueryParam {
 
    @ApiModelProperty(value = "查询类型:按数量(NUM)、按金额(PRICE)")
    private String type;
 
}