package com.example.springboot.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; //理片笼表 /** * 存储笼子表 */ @Data @TableName("storage_cage") public class StorageCage { /** * 主键,自动生成 */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 玻璃id */ private String glassId; /** * 流程卡 */ private String flowcard; /** * 笼子id */ private Integer cage; /** * 格子id */ private Integer cell; /** * 格子层id */ private Integer tier; /** * 格子宽 */ private Double width; /** * 玻璃宽 */ private Double glassWidth; /** * 玻璃高 */ private Double glassHeight; /** * 测量宽 */ private Double glassWidthMm; /** * 测量高 */ private Double glassHeightMm; /** * 厚度 */ private Integer thickness; /** * 膜系 */ private String films; /** * 状态(0:无玻璃,1:有玻璃,2:进片中,3:出片中,4:调度中) */ private Integer state; /** * 格子状态(0:启用,1:禁用) */ private Integer disabled; /** * 玻璃类型 */ private String glasstype; /** * 玻璃数量 */ private Integer number; }