| | |
| | | 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") |
| | | @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; |
| | | |
| | | private Integer id;// 自增id |
| | | private String flowcard;// 流程卡id |
| | | private Integer glasstype;// 玻璃类型 |
| | | private Integer mateid;// 配片id |
| | | private String glassid;// 玻璃id |
| | | private Integer tier;// 层 |
| | | private String films;// 膜系 |
| | | private Double width;// 宽 |
| | | private Double height;// 高 |
| | | private Double thickness;// 厚 |
| | | private Integer number;// 数量 |
| | | private Integer finishnumber;// 完成数量 |
| | | private Integer sumtier;// 完成数量 |
| | | private Integer measurenumber;// 测量完成数量 |
| | | private Integer cageno;//笼内数量 |
| | | } |
| | | |
| | | |