935090232@qq.com
2020-12-02 2e7d9e3e849bda0dae16c1f0c9623df7113b9d0b
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
239
240
241
package com.matrix.system.hive.pojo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.tools.DateUtil;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * 库存出入库明细
 * @author JYY
 */
public class StoreInOutRecordVO {
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone="GMT+8")
    private Date createTime;
    /**
     * 产品编码
     */
    private String code;
 
    /**
     * 商品名称
     */
    private String name;
    /**
     *商品分类名称
     */
    private String typeName;
    /**
     *出入库数量
     */
    private Double amount;
    /**
     * 出库价格
     */
    private Double goodsPrice;
    /**
     * 总金额
     */
    private Double totalPrice;
    /**
     * 单据编号
     */
    private String orderNo;
    /**
     * 单据类型
     */
    private String orderType;
    /**
     * 库存批次
     */
    private String batch;
    /**
     * 操作人
     */
    private String userName;
 
    /**
     * 店铺名称
     */
    private  String shopName;
 
    /**
     * 备注
     */
    private String remark;
    /**
     * 用于对查询的参数
     */
    @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM)
    private Date beginTime;
 
    @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM)
    private Date endTime;
 
    private Long shopId;
 
    private Long companyId;
 
    private Long userId;
 
 
    private Long goodsSortId;
 
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
 
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
 
    public Double getAmount() {
        return amount;
    }
 
    public void setAmount(Double amount) {
        this.amount = amount;
    }
 
    public Double getGoodsPrice() {
        return goodsPrice;
    }
 
    public void setGoodsPrice(Double goodsPrice) {
        this.goodsPrice = goodsPrice;
    }
 
    public Double getTotalPrice() {
        return totalPrice;
    }
 
    public void setTotalPrice(Double totalPrice) {
        this.totalPrice = totalPrice;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public String getOrderType() {
        return orderType;
    }
 
    public void setOrderType(String orderType) {
        this.orderType = orderType;
    }
 
    public String getBatch() {
        return batch;
    }
 
    public void setBatch(String batch) {
        this.batch = batch;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getShopName() {
        return shopName;
    }
 
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Date getBeginTime() {
        return beginTime;
    }
 
    public void setBeginTime(Date beginTime) {
        this.beginTime = beginTime;
    }
 
    public Long getGoodsSortId() {
        return goodsSortId;
    }
 
    public void setGoodsSortId(Long goodsSortId) {
        this.goodsSortId = goodsSortId;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
}