package com.mes.bigstorage.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; /** * (BigStorageGlassRelationInfo)表实体类 * * @author makejava * @since 2024-11-24 10:17:43 */ @Data public class BigStorageGlassRelationInfo { /** * /*钢化玻璃关系表id */ @TableId(value = "id", type = IdType.AUTO) private Long id; private String engineerId; /** * /*玻璃id */ private String glassId; /** * /*钢化版图id */ private Integer temperingLayoutId; /** * /*钢化版图片序 */ private Integer temperingFeedSequence; /** * /*虚拟格子 */ private Integer virtualSlot; /** * /*格子内次序 */ private Integer slotSequence; /** * /*实际笼子号 */ private Integer deviceId; /** * /*实际格子号 */ private Integer slot; }