package com.example.erp.entity.sd; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; @Data public class Product { @TableId(type = IdType.AUTO) private Integer id; private String prodID; private String product; private String glassType; private String typeName; private Double totalThickness; private Double thickness; private String Query; private String remarks; private Integer state; private String creator; private String createTime; private String updateTime; }