3 天以前 b852254d90e7d1955db31db154193ec8ee84d8b3
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
package cn.iocoder.yudao.module.mes.controller.admin.wm.sn.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 = "管理后台 - SN 码在库/状态分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MesWmSnInStockPageReqVO extends PageParam {
 
    @Schema(description = "SN 码", example = "SN20260305000001")
    private String code;
 
    @Schema(description = "物料编号", example = "1")
    private Long itemId;
 
    @Schema(description = "批次号", example = "BATCH001")
    private String batchCode;
 
    @Schema(description = "仓库 ID", example = "5")
    private Long warehouseId;
 
    @Schema(description = "库区 ID", example = "11")
    private Long locationId;
 
    @Schema(description = "库位 ID", example = "10")
    private Long areaId;
 
    @Schema(description = "状态(1-在库 2-已出库)", example = "1")
    private Integer status;
 
}