luqingyang
2023-10-26 ecf55bedecb4f35759ea6e97874bd414528177cb
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
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
public class BaseWarehouseParam extends ParamRequest {
 
    /**
     * 仓库名称
     */
    private String warehouseName;
    /**
     * 仓库类型Code
     */
    private String classificationCode;
    /**
     * 机构id
     */
    private Long agencyId;
    /**
     * 地址
     */
    private String adress;
    /**
     * 状态
     */
    private Integer states;
 
    public String getWarehouseName() {
        return warehouseName;
    }
 
    public void setWarehouseName(String warehouseName) {
        this.warehouseName = warehouseName;
    }
 
    public String getClassificationCode() {
        return classificationCode;
    }
 
    public void setClassificationCode(String classificationCode) {
        this.classificationCode = classificationCode;
    }
 
    public Long getAgencyId() {
        return agencyId;
    }
 
    public void setAgencyId(Long agencyId) {
        this.agencyId = agencyId;
    }
 
    public String getAdress() {
        return adress;
    }
 
    public void setAdress(String adress) {
        this.adress = adress;
    }
 
    public Integer getStates() {
        return states;
    }
 
    public void setStates(Integer states) {
        this.states = states;
    }
}