package com.mes.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data //lombok 简写java代码 实体类的get与set @TableName("`tempering_glass_info`") public class Tempering { @TableId(type = IdType.AUTO) private Integer id;//钢化小片信息表id private String flowcard_id;//流程卡 private Integer glass_type;//流程卡玻璃类型 private Double width;//宽 private Double height;//高 private Double thickness;//厚度 private Integer filmsid;//膜系 private Integer ishorizontal;//钢化是否接受横放 private Integer tempering_layout_id;//钢化版图id private Integer tempering_feed_sequence;//钢化版图片序 private Integer x_coordinate;//x坐标 private Integer y_coordinate;//y坐标 private Integer angle;//旋转角度(逆时针) private Integer state;//状态 }