郑永安
2023-06-19 59e91a4e9ddaf23cebb12993c774aa899ab22d16
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package com.gk.firework.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.io.Serializable;
import java.util.Date;
 
@TableName("stock")
public class StockInfo implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    public static final String STOCK_SOLD = "已售出";
    /**   id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** product表id  productid **/
    private Long productid;
 
    /** 流向码  directioncode **/
    private String directioncode;
 
    /** 流向码箱码  directionboxcode **/
    private String directionboxcode;
 
    /** 数量  num **/
    private Integer num;
 
    /** 归属公司(销售点,个人)  owner **/
    private String owner;
 
    /** 状态  status **/
    private String status;
 
    /** 入库日期  indate **/
    private Date indate;
 
    /** 出库日期  outdate **/
    private Date outdate;
 
    /** 操作人  operator **/
    private String operator;
 
    /** 入库方式(1,常规入库;2,快速入库;3,退货入库)  type **/
    private Byte type;
 
    /** 备注(保留字段)  remark **/
    private String remark;
 
    /** 创建人  createdby **/
    private String createdby;
 
    /** 创建时间  createddate **/
    private Date createddate;
 
    /** 修改人  modifiedby **/
    private String modifiedby;
 
    /** 修改时间  modifieddate **/
    private Date modifieddate;
 
    /** 零售入库标记(0:批量入库;1:零售入库)  flag **/
    private Byte flag;
 
    /**     id   **/
    public Long getId() {
        return id;
    }
 
    /**     id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   product表id  productid   **/
    public Long getProductid() {
        return productid;
    }
 
    /**   product表id  productid   **/
    public void setProductid(Long productid) {
        this.productid = productid;
    }
 
    /**   流向码  directioncode   **/
    public String getDirectioncode() {
        return directioncode;
    }
 
    /**   流向码  directioncode   **/
    public void setDirectioncode(String directioncode) {
        this.directioncode = directioncode == null ? null : directioncode.trim();
    }
 
    /**   流向码箱码  directionboxcode   **/
    public String getDirectionboxcode() {
        return directionboxcode;
    }
 
    /**   流向码箱码  directionboxcode   **/
    public void setDirectionboxcode(String directionboxcode) {
        this.directionboxcode = directionboxcode == null ? null : directionboxcode.trim();
    }
 
    /**   数量  num   **/
    public Integer getNum() {
        return num;
    }
 
    /**   数量  num   **/
    public void setNum(Integer num) {
        this.num = num;
    }
 
    /**   归属公司(销售点,个人)  owner   **/
    public String getOwner() {
        return owner;
    }
 
    /**   归属公司(销售点,个人)  owner   **/
    public void setOwner(String owner) {
        this.owner = owner == null ? null : owner.trim();
    }
 
    /**   状态  status   **/
    public String getStatus() {
        return status;
    }
 
    /**   状态  status   **/
    public void setStatus(String status) {
        this.status = status == null ? null : status.trim();
    }
 
    /**   入库日期  indate   **/
    public Date getIndate() {
        return indate;
    }
 
    /**   入库日期  indate   **/
    public void setIndate(Date indate) {
        this.indate = indate;
    }
 
    /**   出库日期  outdate   **/
    public Date getOutdate() {
        return outdate;
    }
 
    /**   出库日期  outdate   **/
    public void setOutdate(Date outdate) {
        this.outdate = outdate;
    }
 
    /**   操作人  operator   **/
    public String getOperator() {
        return operator;
    }
 
    /**   操作人  operator   **/
    public void setOperator(String operator) {
        this.operator = operator == null ? null : operator.trim();
    }
 
    /**   入库方式(1,常规入库;2,快速入库;3,退货入库)  type   **/
    public Byte getType() {
        return type;
    }
 
    /**   入库方式(1,常规入库;2,快速入库;3,退货入库)  type   **/
    public void setType(Byte type) {
        this.type = type;
    }
 
    /**   备注(保留字段)  remark   **/
    public String getRemark() {
        return remark;
    }
 
    /**   备注(保留字段)  remark   **/
    public void setRemark(String remark) {
        this.remark = remark == null ? null : remark.trim();
    }
 
    /**   创建人  createdby   **/
    public String getCreatedby() {
        return createdby;
    }
 
    /**   创建人  createdby   **/
    public void setCreatedby(String createdby) {
        this.createdby = createdby == null ? null : createdby.trim();
    }
 
    /**   创建时间  createddate   **/
    public Date getCreateddate() {
        return createddate;
    }
 
    /**   创建时间  createddate   **/
    public void setCreateddate(Date createddate) {
        this.createddate = createddate;
    }
 
    /**   修改人  modifiedby   **/
    public String getModifiedby() {
        return modifiedby;
    }
 
    /**   修改人  modifiedby   **/
    public void setModifiedby(String modifiedby) {
        this.modifiedby = modifiedby == null ? null : modifiedby.trim();
    }
 
    /**   修改时间  modifieddate   **/
    public Date getModifieddate() {
        return modifieddate;
    }
 
    /**   修改时间  modifieddate   **/
    public void setModifieddate(Date modifieddate) {
        this.modifieddate = modifieddate;
    }
 
    /**   零售入库标记(0:批量入库;1:零售入库)  flag   **/
    public Byte getFlag() {
        return flag;
    }
 
    /**   零售入库标记(0:批量入库;1:零售入库)  flag   **/
    public void setFlag(Byte flag) {
        this.flag = flag;
    }
}