package com.mes.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; @Data public class DownStorageCageDetails { @TableId(type = IdType.AUTO) private int id; // 下片前理片笼明细表id private int deviceId; // 设备id private int slot; // 栅格号 private int glassId; // 玻璃id private int sequence; // 小片在格内的顺序 private String flowCardId; // 流程卡号 private int glassType; // 玻璃类型 private double width; // 宽 private double height; // 高 private double thickness; // 厚度 private int temperingLayoutId; // 钢化版图id private int temperingFeedSequence; // 钢化版图片序 private int state; // 状态 private int gap; // 玻璃间隙 }