package com.mes.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data //lombok 简写java代码 实体类的get与set @TableName("`edg_storage_cage_details`") public class EdgStorageCageDetails { @TableId(type = IdType.AUTO) private Integer id;//磨边前理片笼详情表id private Integer deviceid;//设备id private Integer slot;//栅格号 private Integer glassid;//玻璃id private Integer sequence;//小片在格内的顺序 private String flowcardid;//流程卡号 private Integer glasstype;//玻璃类型 private Double width;//宽 private Double height;//高 private Double thickness;//厚度 private Double edgwidth;//磨前宽 private Double edgheight;//磨前高 private Integer temperinglayoutid;//钢化版图id private Integer temperingfeedsequence;//钢化版图片序 private Integer patternsequence;//原片顺序 private Integer state;//状态 private Integer gap;//玻璃间隙 }