| 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_heat_detail`") |
| | | public class OptimizeHeatDetail { |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | private String projectNo; |
| | | private String processId; |
| | | private Integer patchState; |
| | | private Integer layer; |
| | | private Integer orderSort; |
| | | private Integer layoutId; |
| | | private Integer sort; |
| | | private Integer glass_id; |
| | | private Double width; |
| | | private Double height; |
| | | private LocalDate createTime; |
| | | |
| | | |
| | | } |