10 天以前 d5cd948848595b0cffe098ba542a9c879b0f9165
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
42
43
44
45
46
47
48
49
50
51
52
53
54
package cn.iocoder.yudao.module.mes.controller.admin.wm.materialstock.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
@Schema(description = "管理后台 - MES 库存台账分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MesWmMaterialStockPageReqVO extends PageParam {
 
    /**
     * 虚拟仓过滤模式 - 排除虚拟仓
     */
    public static final String VIRTUAL_FILTER_EXCLUDE = "exclude";
    /**
     * 虚拟仓过滤模式 - 只看虚拟仓
     */
    public static final String VIRTUAL_FILTER_ONLY = "only";
 
    @Schema(description = "虚拟仓过滤模式", example = "exclude")
    private String virtualFilter;
 
    @Schema(description = "物料分类编号", example = "1")
    private Long itemTypeId;
 
    @Schema(description = "物料编号", example = "1")
    private Long itemId;
 
    @Schema(description = "批次号", example = "B20260101")
    private String batchCode;
 
    @Schema(description = "批次编号", example = "1")
    private Long batchId;
 
    @Schema(description = "仓库编号", example = "1")
    private Long warehouseId;
 
    @Schema(description = "库区编号", example = "1")
    private Long locationId;
 
    @Schema(description = "库位编号", example = "1")
    private Long areaId;
 
    @Schema(description = "供应商编号", example = "1")
    private Long vendorId;
 
    @Schema(description = "是否冻结", example = "false")
    private Boolean frozen;
 
}