wangfei
2024-10-09 33308e16bbb153d9aac76fd703ec0f38ea7e344a
hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/entity/EdgStorageCageDetails.java
@@ -1,6 +1,7 @@
package com.mes.edgstoragecage.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;
@@ -26,6 +27,11 @@
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 工程id
     */
    private String engineerId;
    /**
     * 设备id
@@ -60,27 +66,27 @@
    /**
     * 宽
     */
    private Double width;
    private double width;
    /**
     * 高
     */
    private Double height;
    private double height;
    /**
     * 厚度
     */
    private Double thickness;
    private double thickness;
    /**
     * 磨前宽
     */
    private Double edgWidth;
    private double edgWidth;
    /**
     * 磨前高
     */
    private Double edgHeight;
    private double edgHeight;
    /**
     * 钢化版图id
@@ -98,7 +104,7 @@
    private Integer patternSequence;
    /**
     * 状态
     * 状态  (识别后成功状态100,出片任务101, 拿走200,破损201)
     */
    private Integer state;
@@ -106,6 +112,11 @@
     * 玻璃间隙
     */
    private Integer gap;
    /**
     * 玻璃间隙
     */
    @TableField(exist = false)
    private Integer count;
}