xuhy
2024-08-31 80206642e27a501ab2f2725d4104c7579698793d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.query;
 
import com.ruoyi.common.core.domain.model.TimeRangeQueryBody;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "营业数据统计Query")
public class TDataStatisticsQuery extends TimeRangeQueryBody {
 
    @ApiModelProperty(value = "时间类型 1=今日 2=昨日 3=近7天 4=近30天")
    private Integer timeType;
 
    @ApiModelProperty(value = "店铺id")
    private Long shopId;
 
}