wu
2025-02-27 597694f4d57a16aeb1bdccdebfcb5375abc1fce9
hangzhoumesParent/common/servicebase/src/main/java/com/mes/glassinfo/entity/GlassInfo.java
@@ -1,6 +1,7 @@
package com.mes.glassinfo.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -35,22 +36,22 @@
    /**
     * 流程卡玻璃类型
     */
    private String glassType;
    private Integer glassType;
    /**
     * 宽
     */
    private Double width;
    private double width;
    /**
     * 高
     */
    private Double height;
    private double height;
    /**
     * 厚度
     */
    private Double thickness;
    private double thickness;
    /**
     * 膜系
@@ -70,12 +71,12 @@
    /**
     * 磨前宽
     */
    private Double edgWidth;
    private double edgWidth;
    /**
     * 磨前高
     */
    private Double edgHeight;
    private double edgHeight;
    /**
     * 是否配片
@@ -85,12 +86,12 @@
    /**
     * 配片最大宽
     */
    private Double maxWidth;
    private double maxWidth;
    /**
     * 配片最大高
     */
    private Double maxHeight;
    private double maxHeight;
    /**
     * 钢化是否接受横放
@@ -101,6 +102,15 @@
     * 原片顺序
     */
    private Integer patternSequence;
    /**
     * x坐标
     */
    private Integer xAxis;
    /**
     * y坐标
     */
    private Integer yAxis;
    /**
     * 钢化版图id
@@ -125,7 +135,7 @@
    /**
     * 旋转角度(逆时针)
     */
    private Double angle;
    private double angle;
    /**
     * 工程号
@@ -141,6 +151,23 @@
     * 玻璃ID
     */
    private String glassId;
    /**
     * 是否合并
     */
    private Integer combine;
    /**
     * 打标属性
     */
    private String markIcon;
    /**
     * 除膜方式
     */
    private Integer filmRemove;
    /**
     * 状态
     */
    @TableField(exist = false)
    private Integer status;
}