| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @TableName("sd.order_glass_detail") |
| | | public class OrderGlassDetail { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | |
| | | private String glassChild; |
| | | private Double childWidth; |
| | | private Double childHeight; |
| | | private Double area; |
| | | private Double totalArea; |
| | | private Double arc;//弧长 |
| | | private String icon; |
| | | private String process; |
| | | private String productionId; |
| | | private Integer splittingStatus; |
| | |
| | | private Integer group; |
| | | private LocalDate productionTime; |
| | | private LocalDate createTime; |
| | | // @TableField(select = false) |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private Integer thickness; |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private Order order; |
| | | //@TableField(select = false) |
| | | // @ManyToOne(fetch = FetchType.LAZY) |
| | | private OrderDetail orderDetail; |
| | | |
| | | |
| | | @TableField(select = false,exist = false) |
| | | private OrderDetail orderDetail; |
| | | } |