chenlu
2024-01-26 66dcbf3fcfc3bb27a5619626d24ce19f50a4b79f
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
package com.example.erp.entity.sd;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.time.LocalDate;
 
@Data
public class OrderGlassDetail {
    @TableId(type = IdType.AUTO)
 
    private Long id;
    private String orderId;
    private String orderNumber;
    private Integer technologyNumber;
    private String glassAddress;
    private String glassChild;
    private Double childWidth;
    private Double childHeight;
    private String process;
    private String productionId;
    private Integer splittingStatus;
    private String founder;
    private Integer group;
    private LocalDate produtionTime;
    private LocalDate createTime;
 
    private  Order order;
    private  OrderDetail orderDetail;
 
 
}