| | |
| | | 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; |
| | | import java.util.Map; |
| | | |
| | | |
| | | @Data |
| | | public class ProductDetail { |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | private String prodId; |
| | | private String sortNum; |
| | | private String glassSort; |
| | | private Long prodId; |
| | | private Integer sortNum; |
| | | private Integer glassSort; |
| | | private String detailType; |
| | | private String detail; |
| | | private Integer glassGroup; |
| | | private String process; |
| | | private String separation; |
| | | private LocalDate createTime; |
| | | @TableField(select = false) |
| | | private Product product; |
| | | } |