| | |
| | | package com.example.erp.entity.sd; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class Product { |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | private String prodID; |
| | | private String product; |
| | | private String glassType; |
| | | private Long id; |
| | | private String productName; |
| | | private String typeId; |
| | | private String typeName; |
| | | private Double totalThickness; |
| | | private Double thickness; |
| | | private String Query; |
| | | private String query; |
| | | private String remarks; |
| | | private Integer state; |
| | | private String creator; |
| | | private String createTime; |
| | | private String updateTime; |
| | | private LocalDate createTime; |
| | | private LocalDate updateTime; |
| | | @TableField(select = false) |
| | | private BasicGlassType basicGlassType; |
| | | |
| | | } |