1
廖井涛
2024-01-23 3f2925f78efc5a75d5fc380c3bb9922546b51f92
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java
New file
@@ -0,0 +1,31 @@
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 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;
}