package com.mes.temperingglass.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.mes.base.entity.BigStorageCageBaseInfo; import lombok.Data; import java.io.Serializable; /** * (TemperingGlassInfo)表实体类 * * @author makejava * @since 2024-11-18 08:36:18 */ @Data @TableName("tempering_glass_info") public class TemperingGlass extends BigStorageCageBaseInfo implements Serializable { /** * 钢化小片信息表id */ @TableId(value = "id", type = IdType.AUTO) private Long id; /** * 流程卡 */ private String flowCardId; /** * 流程卡玻璃类型 */ private Integer glassType; /** * 厚度 */ private Double thickness; /** * 膜系 */ private String filmsid; /** * 总层数 */ private Integer totalLayer; /** * 层数 */ private Integer layer; /** * 钢化是否接受横放 */ private Integer ishorizontal; /** * 钢化版图id */ private Integer temperingLayoutId; /** * 钢化版图片序 */ private Integer temperingFeedSequence; /** * 旋转角度(逆时针) */ private Integer angle; /** * 工程号 */ private String engineerId; /** * 状态 */ private Integer state; /** * 钢化类型 */ private Integer temperingType; private String deleted; }