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
package com.mes.order.entity;
 
import java.math.BigDecimal;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wu
 * @since 2024-06-17
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Order implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * <订单表>
     */
      @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 订单Id
     */
    private String orderId;
 
    /**
     * 项目名称
     */
    private String project;
 
    /**
     * 客户Id
     */
    private Long customerId;
 
    /**
     * 客户名称
     */
    private String customerName;
 
    /**
     * 订单类型
     */
    private String orderType;
 
    /**
     * 订单分类
     */
    private String orderClassify;
 
    /**
     * 商标选项
     */
    private String icon;
 
    /**
     * 包装方式
     */
    private String packType;
 
    /**
     * 送货时间
     */
    private LocalDateTime deliveryDate;
 
    /**
     * 批次
     */
    private String batch;
 
    /**
     * 计算方式
     */
    private Integer calculateType;
 
    /**
     * 销售人员Id
     */
    private String salesmanId;
 
    /**
     * 销售人
     */
    private String salesman;
 
    /**
     * 铝条方式
     */
    private String alType;
 
    /**
     * 金额
     */
    private BigDecimal money;
 
    /**
     * 合同编号
     */
    private String contractId;
 
    /**
     * 客户批次
     */
    private String customerBatch;
 
    /**
     * 联系人
     */
    private String contacts;
 
    /**
     * 联系电话
     */
    private String contactNumber;
 
    /**
     * 送货地址
     */
    private String deliveryAddress;
 
    /**
     * 其他金额
     */
    private BigDecimal otherMoney;
 
    /**
     * 其他金额备注
     */
    private String otherMoneyRemarks;
 
    /**
     * 订单加工备注
     */
    private String processingNote;
 
    /**
     * 其他备注
     */
    private String otherRemarks;
 
    /**
     * 面积
     */
    private BigDecimal area;
 
    /**
     * 数量
     */
    private Long quantity;
 
    /**
     * 周长
     */
    private String perimeter;
 
    /**
     * 审核人id
     */
    private String verifierId;
 
    /**
     * 审核人
     */
    private String verifier;
 
    /**
     * 创建人id
     */
    private String creatorId;
 
    /**
     * 创建人
     */
    private String creator;
 
    /**
     * 下单
     */
    private Integer createOrder;
 
    /**
     * 工艺审核
     */
    private Integer processReview;
 
    /**
     * 订单审核
     */
    private Integer orderReview;
 
    /**
     * 生产订单
     */
    private Integer productionOrder;
 
    /**
     * 流程卡
     */
    private Integer processingCard;
 
    /**
     * 入库    未入库状态0,未完全入库状态1,完全入库状态2
     */
    private Integer warehousing;
 
    /**
     * 发货
     */
    private Integer delivery;
 
    /**
     * 创建日期
     */
    private LocalDateTime createTime;
 
    /**
     * 修改时间
     */
    private LocalDateTime updateTime;
 
 
}