package com.mes.hollow.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.List; /** * (HollowBigStorageCage)表实体类 * * @author makejava * @since 2024-11-21 09:22:45 */ @Data public class HollowBigStorageCage { /** * /*大理片笼表id */ @TableId(value = "id", type = IdType.AUTO) private Long id; /** * /*设备id */ private Integer deviceId; /** * /*栅格号 */ private Integer slot; /** * /*最小厚度 */ private Integer minThickness; /** * /*最大厚度 */ private Integer maxThickness; /** * /*启用状态 */ private Integer enableState; /** * /*剩余宽度 */ private Integer remainWidth; @ApiModelProperty(hidden = true) @TableField(exist = false) private List hollowBigStorageCageDetails; }