935090232@qq.com
2021-11-21 59634aeabb04aae0e819bd4c5fe909bb9cdbeb28
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
package com.matrix.system.hive.bean;
 
import com.matrix.core.anotations.Extend;
import com.matrix.system.hive.plugin.util.NumberUtils;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 *
 * @date 2016-07-17 10:23
 */
public class SysStoreInfo implements Serializable{
 
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * id
     */
    private Long  id;
            
    
    /**
     * 仓库id
     */
    private Long  storeId;
            
    
    /**
     * SKU id
     */
    private Long  skuId;
            
    
    /**
     * 库存数量
     */
    private Double  storeTotal;
 
 
    /**
     * 产品成本价
     */
    private Double  goodsPrice;
 
 
 
    /**
     * 入库时间
     */
    private Date time;
 
    /**
     * 入库批次
     */
    private String batch;
    
    
    /**
     * 扩展属性
     */
 
    /**
     * 仓库名称
     */
    private String storeName;
    
    /**
     * 包含的商品
     */
    private ShoppingGoods goods;
    
    /**
     * 查询用的字段,表示是否查询库存预警,1是,2否
     */
    private Integer isAlarm;
    /**
     * 批次计数
     */
    @Extend
    private Integer batchCount;
 
    private Long shopId;
 
    private Long companyId;
 
    private String name;
 
    @Extend
    private String queryKey;
 
    public String getQueryKey() {
        return queryKey;
    }
 
    public void setQueryKey(String queryKey) {
        this.queryKey = queryKey;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public Integer getBatchCount() {
        return batchCount;
    }
 
    public void setBatchCount(Integer batchCount) {
        this.batchCount = batchCount;
    }
 
    public Integer getIsAlarm() {
        return isAlarm;
    }
 
    public void setIsAlarm(Integer isAlarm) {
        this.isAlarm = isAlarm;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
    public Long getStoreId() {
        return storeId;
    }
 
    public void setStoreId(Long storeId) {
        this.storeId = storeId;
    }
 
    public Long getSkuId() {
        return skuId;
    }
 
    public void setSkuId(Long skuId) {
        this.skuId = skuId;
    }
 
 
    public Double getGoodsPrice() {
        return goodsPrice;
    }
 
    public void setGoodsPrice(Double goodsPrice) {
        this.goodsPrice = goodsPrice;
    }
 
    public String getStoreName() {
        return storeName;
    }
 
    public void setStoreName(String storeName) {
        this.storeName = storeName;
    }
 
    public ShoppingGoods getGoods() {
        return goods;
    }
 
    public void setGoods(ShoppingGoods goods) {
        this.goods = goods;
    }
 
    public Double getStoreTotal() {
        return storeTotal;
    }
    public void setStoreTotal(Double storeTotal) {
        this.storeTotal =  NumberUtils.getDoubleNum(storeTotal, 3);
 
    }
 
    public Date getTime() {
        return time;
    }
 
    public void setTime(Date time) {
        this.time = time;
    }
 
    public String getBatch() {
        return batch;
    }
 
    public void setBatch(String batch) {
        this.batch = batch;
    }
 
 
}