xuhy
2024-08-30 c22b895afe54ea30e395e00ed225883243fb8309
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 = "数据生成分页")
public class TDataGeneratorQuery extends TimeRangeQueryBody {
    @ApiModelProperty(value = "操作人姓名")
    private String userName;
    @ApiModelProperty(value = "店铺名称")
    private String shopName;
    @ApiModelProperty(value = "状态 1=生成中 2=待覆盖 3=已覆盖")
    private Integer status;
    @ApiModelProperty(value = "订单类型 1=餐饮 2=销售")
    @NotNull(message = "订单类型不能为空")
    private Integer orderType;
 
}