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
242
243
244
package com.matrix.system.hive.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.tools.DateUtil;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
 
/**
 *
 * 
 * @date 2016-07-25 09:31
 */
public class SysOutStore extends EntityDTO {
 
    private static final long serialVersionUID = 1L;
 
    private Long id;
 
    /**
     * 门店id
     */
    private Long shopId;
 
    /**
     * 配料师员工
     */
    private Long staffId;
 
    private String outStoreNo;
    /**
     * 出库时间
     */
    @DateTimeFormat(pattern= DateUtil.DATE_FORMAT_MM)
    private Date time;
 
    /**
     * 服务单id
     */
    private Long serviceId;
 
    private Long companyId;
 
 
    /**
     * 出库类型 消耗产品出库 家居产品出库
     */
    private String type;
    /**
     * 订单id
     */
    private Long  orderId;
    
    /**
     * 审核状态
     */
    private String checkStatus;
 
 
    // 扩展属性
 
    /**
     * 服务单编号
     * 
     */
    private String serviceNo;
    /**
     * 门店名称
     */
    private String shopName;
 
    /**
     * 配料师名称
     */
    private String staffName;
    /**
     * 备注
     * */
    private String remark;
 
    /**
     * 明细集合
     */
    private List<SysOutStoreItem> outStoreItems;
    /**
     * 用于对时间的查询
     */
    private Date startTime;
    private Date endTime;
 
    public String getOutStoreNo() {
        return outStoreNo;
    }
 
    public void setOutStoreNo(String outStoreNo) {
        this.outStoreNo = outStoreNo;
    }
 
    public Date getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Long getOrderId() {
        return orderId;
    }
 
    public void setOrderId(Long orderId) {
        this.orderId = orderId;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Long getStaffId() {
        return staffId;
    }
 
    public void setStaffId(Long staffId) {
        this.staffId = staffId;
    }
 
    public Date getTime() {
        return time;
    }
 
    public void setTime(Date time) {
        this.time = time;
    }
 
    public Long getServiceId() {
        return serviceId;
    }
 
    public void setServiceId(Long serviceId) {
        this.serviceId = serviceId;
    }
 
    public String getShopName() {
        return shopName;
    }
 
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
 
    public String getSuName() {
        return staffName;
    }
 
    public void setStaffName(String staffName) {
        this.staffName = staffName;
    }
 
    public String getServiceNo() {
        return serviceNo;
    }
 
    public void setServiceNo(String serviceNo) {
        this.serviceNo = serviceNo;
    }
 
    public List<SysOutStoreItem> getOutStoreItems() {
        return outStoreItems;
    }
 
    public void setOutStoreItems(List<SysOutStoreItem> outStoreItems) {
        this.outStoreItems = outStoreItems;
    }
 
 
    public String getCheckStatus() {
        return checkStatus;
    }
 
    public void setCheckStatus(String checkStatus) {
        this.checkStatus = checkStatus;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    @Override
    public String toString() {
        return "SysOutStore [id=" + id + ", shopId=" + shopId + ", staffId="
                + staffId + ", time=" + time + ", serviceId=" + serviceId
                + ", type=" + type + ", orderId=" + orderId + ", checkStatus="
                + checkStatus + ", serviceNo=" + serviceNo + ", shopName="
                + shopName + ", staffName=" + staffName + ", outStoreItems="
                + outStoreItems + ", startTime=" + startTime + ", endTime="
                + endTime + "]";
    }
 
 
 
}