New file |
| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | @TableName("pp.`optimize_detail`") |
| | | public class OptimizeDetail { |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | private String projectNo; |
| | | private String processId; |
| | | private Integer total_layer; |
| | | private Integer layer; |
| | | private Integer orderSort; |
| | | private Integer stock_id; |
| | | private Integer stock_number; |
| | | private String glass_id; |
| | | private Double pWidth; |
| | | private Double pHeight; |
| | | private Integer heatLayoutId; |
| | | private Integer heatLayoutSort; |
| | | |
| | | |
| | | } |