cy
2023-10-27 1c50fb8dedaf13cb41f292a1a62b62055bc67f86
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package com.consum.base.pojo;
 
import com.walker.web.param.ParamRequest;
 
import java.util.List;
 
/**
 * @ClassName LWhFormProcureParam
 * @Author cy
 * @Date 2023/10/27
 * @Description
 * @Version 1.0
 **/
public class LWhFormProcureParam extends ParamRequest {
    private Long id;
    /**
     * 仓库编号
     */
    private Long warehouseId;
 
    /**
     * 采购手续
     */
    private String procureDoc;
 
    /**
     * 采购方式(1:集采;2=自采)
     */
    private Integer buyType = null;
 
 
    /**
     * 采购单型号
     */
    private List<LWhFormProcureGoodsParams> procureGoods;
 
    public Long getWarehouseId() {
        return warehouseId;
    }
 
    public void setWarehouseId(Long warehouseId) {
        this.warehouseId = warehouseId;
    }
 
    public String getProcureDoc() {
        return procureDoc;
    }
 
    public void setProcureDoc(String procureDoc) {
        this.procureDoc = procureDoc;
    }
 
    public Integer getBuyType() {
        return buyType;
    }
 
    public void setBuyType(Integer buyType) {
        this.buyType = buyType;
    }
 
    public List<LWhFormProcureGoodsParams> getProcureGoods() {
        return procureGoods;
    }
 
    public void setProcureGoods(List<LWhFormProcureGoodsParams> procureGoods) {
        this.procureGoods = procureGoods;
    }
 
    /**
     * 入库单号
     */
    private String businessFormCode;
    /**
     * 物品模版名称
     */
    private String goodsTemplateName;
    /**
     * 机构
     */
    private Long agencyId;
    /**
     * 创建人
     */
    private String buyerName;
    /**
     * 1=待入库;2=已入库
     */
    private Short states;
 
    /**
     * 入库时间 开始
     */
    private Long incomeTimeStart;
    /**
     * 入库时间 结束
     */
    private Long incomeTimeEnd;
 
    public String getBusinessFormCode() {
        return businessFormCode;
    }
 
    public void setBusinessFormCode(String businessFormCode) {
        this.businessFormCode = businessFormCode;
    }
 
    public String getGoodsTemplateName() {
        return goodsTemplateName;
    }
 
    public void setGoodsTemplateName(String goodsTemplateName) {
        this.goodsTemplateName = goodsTemplateName;
    }
 
    public Long getAgencyId() {
        return agencyId;
    }
 
    public void setAgencyId(Long agencyId) {
        this.agencyId = agencyId;
    }
 
    public String getBuyerName() {
        return buyerName;
    }
 
    public void setBuyerName(String buyerName) {
        this.buyerName = buyerName;
    }
 
    public Short getStates() {
        return states;
    }
 
    public void setStates(Short states) {
        this.states = states;
    }
 
    public Long getIncomeTimeStart() {
        return incomeTimeStart;
    }
 
    public void setIncomeTimeStart(Long incomeTimeStart) {
        this.incomeTimeStart = incomeTimeStart;
    }
 
    public Long getIncomeTimeEnd() {
        return incomeTimeEnd;
    }
 
    public void setIncomeTimeEnd(Long incomeTimeEnd) {
        this.incomeTimeEnd = incomeTimeEnd;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
}