whycxzp
2025-04-23 abccd023bae40d5d8ad2fcdbf848b4240928414d
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.whyc.dto;
 
/**
 * 库位数据
 * 参数说明    字段名称    参数类型    字段描述
 *     location_ID    Int    库位ID
 *     locationCode    String    库位编码
 *     locationType    Int    库位类型 1=一楼入库缓存位、2=一楼出库缓存位、3=活化仓、4=二楼走廊工位、5=存放库区
 *     a1    Int    排
 *     a2    Int    列
 *     status    Int    状态 0=无货、1=有货、4=锁定中
 */
public class WmsLocationDto {
    /** 库位ID */
    private Integer location_ID;
    /** 库位编码 */
    private String locationCode;
    /** 库位类型 1=一楼入库缓存位、2=一楼出库缓存位、3=活化仓、4=二楼走廊工位、5=存放库区 */
    private Integer locationType;
    /** 排 */
    private Integer a1;
    /** 列 */
    private Integer a2;
    /** 状态 0=无货、1=有货、4=锁定中 */
    private Integer status;
 
    public Integer getLocation_ID() {
        return location_ID;
    }
 
    public void setLocation_ID(Integer location_ID) {
        this.location_ID = location_ID;
    }
 
    public String getLocationCode() {
        return locationCode;
    }
 
    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode;
    }
 
    public Integer getLocationType() {
        return locationType;
    }
 
    public void setLocationType(Integer locationType) {
        this.locationType = locationType;
    }
 
    public Integer getA1() {
        return a1;
    }
 
    public void setA1(Integer a1) {
        this.a1 = a1;
    }
 
    public Integer getA2() {
        return a2;
    }
 
    public void setA2(Integer a2) {
        this.a2 = a2;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
}