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("glassinfo") public class GlassInfo { /** * 主键,自动生成 */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 流程卡id */ private Integer flowcard; /** * 玻璃类型 */ private Integer glasstype; /** * 配片id */ private Integer mateid; /** * 玻璃id */ private String glassid; /** * 层 */ private Integer tier; /** * 膜系 */ private String films; /** * 宽 */ private Double width; /** * 高 */ private Double height; /** * 厚度 */ private Double thickness; /** * 数量 */ private Integer number; /** * 完成数量 */ private Integer finishnumber; }