无关风月
2024-09-03 56dfe0d4bf81262622a1919cceb2b039fd356209
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.ruoyi.management.domain.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("首页统计查询传输对象")
public class HomeStatisticsQuery {
 
    @ApiModelProperty("仓库名称")
    private String storeManagementName;
 
    @ApiModelProperty("仓库编号")
    private String storeManagementNo;
 
    @ApiModelProperty("仓库层数 1代表一层,2代表两层,3代表三层")
    private Integer storeManagementNumber;
 
    @ApiModelProperty("仓库等级 1省级,2市州级,3市县级,5乡镇级,6 经营单位")
    private String storeManagementGrade;
 
    @ApiModelProperty("物资名称")
    private String goodsMaterialsName;
 
    @ApiModelProperty("货架id")
    private Long shelfId;
 
    /** 城市code */
    @ApiModelProperty("城市code")
    private String cityCode;
 
    /** 所属区县code */
    @ApiModelProperty("所属区县code")
    private String countyCode;
 
    /** 所属街道code */
    @ApiModelProperty("所属街道code")
    private String townCode;
}