wu
2024-06-18 55b1820e0824e06d373ef246ccf7cf6433c195b8
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
package com.mes.orderdetail.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-18
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class OrderDetail implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * <订单产品明细>
     */
      @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 订单Id
     */
    private String orderId;
 
    /**
     * 订单产品自序
     */
    private Integer orderNumber;
 
    /**
     * 楼号
     */
    private String buildingNumber;
 
    /**
     * 产品Id
     */
    private Long productId;
 
    /**
     * 产品名称
     */
    private String productName;
 
    /**
     * 单价
     */
    private BigDecimal price;
 
    /**
     * 数量
     */
    private Long quantity;
 
    /**
     * 总金额
     */
    private BigDecimal grossAmount;
 
    /**
     * 宽
     */
    private BigDecimal width;
 
    /**
     * 高
     */
    private BigDecimal height;
 
    /**
     * 形状
     */
    private String shape;
 
    /**
     * 实际面积
     */
    private BigDecimal area;
 
    /**
     * 实际总面积
     */
    private BigDecimal grossArea;
 
    /**
     * 结算单片面积
     */
    private BigDecimal computeArea;
 
    /**
     * 结算总面积
     */
    private BigDecimal computeGrossArea;
 
    /**
     * 加工要求
     */
    private String processingNote;
 
    /**
     * 备注
     */
    private String remarks;
 
    /**
     * 弯钢弧度
     */
    private Double bendRadius;
 
    /**
     * 磨边类型
     */
    private String edgingType;
 
    /**
     * 拱高
     */
    private Double archRise;
 
    /**
     * 重量
     */
    private String weight;
 
    /**
     * 周长
     */
    private String perimeter;
 
    /**
     * 其他列
     */
    private String otherColumns;
 
    /**
     * 入库可用数量
     */
    private Integer warehouseNum;
 
    /**
     * 发货数量
     */
    private Integer deliveryNum;
 
    /**
     * 退货数量
     */
    private Integer returnNum;
 
    /**
     * 状态
     */
    private Integer state;
 
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
 
    /**
     * 修改时间
     */
    private LocalDateTime updateTime;
 
 
}