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
23
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;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "数据生成进货查询Query")
public class TDataGeneratorStockQuery extends TimeRangeQueryBody {
 
    @ApiModelProperty(value = "时间类型 1=今日 2=昨日 3=近7天 4=近30天")
    private Integer timeType;
    @ApiModelProperty(value = "数据生成id")
    @NotNull(message = "数据生成id不能为空")
    private Long generatorId;
 
    @ApiModelProperty(value = "订单编号")
    private String orderNum;
 
}