xuhy
3 天以前 508f3e225df87e0da974424981e7782fc5ce875c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.query;
 
import com.ruoyi.common.core.domain.model.TimeRangeQueryBody;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "营业数据统计营业明细Query")
public class ProfitDetailsQuery extends TimeRangeQueryBody {
 
    @ApiModelProperty(value = "时间类型 1=今日 2=昨日 3=近7天 4=近30天")
    private Integer timeType;
 
    @ApiModelProperty(value = "店铺id")
    private Long shopId;
    @ApiModelProperty(value = "分类id")
    private Long typeId;
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
}