From 87bc30b6600d5f348ccf89aeb711ad007b721183 Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期五, 19 七月 2024 09:44:44 +0800
Subject: [PATCH] 1、大理片调整:将定时任务时间有300ms调整为500ms 2、大理片笼:大理片详情表数据增加出片中状态,增加状态更改定时任务,用于处理玻璃是否执行完成 3、钢化对接功能文件名修改

---
 hangzhoumesParent/common/servicebase/src/main/java/com/mes/temperingglass/entity/TemperingGlassInfo.java |   27 +++++----------------------
 1 files changed, 5 insertions(+), 22 deletions(-)

diff --git a/hangzhoumesParent/common/servicebase/src/main/java/com/mes/temperingglass/entity/TemperingGlassInfo.java b/hangzhoumesParent/common/servicebase/src/main/java/com/mes/temperingglass/entity/TemperingGlassInfo.java
index 02e9750..d3d7b75 100644
--- a/hangzhoumesParent/common/servicebase/src/main/java/com/mes/temperingglass/entity/TemperingGlassInfo.java
+++ b/hangzhoumesParent/common/servicebase/src/main/java/com/mes/temperingglass/entity/TemperingGlassInfo.java
@@ -1,7 +1,7 @@
 package com.mes.temperingglass.entity;
-
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
+import com.mes.base.entity.BigStorageCageBaseInfo;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
@@ -20,7 +20,7 @@
 @ApiModel(description = "<p> 閽㈠寲灏忕墖淇℃伅琛� </p>")
 @Data
 @EqualsAndHashCode(callSuper = false)
-public class TemperingGlassInfo implements Serializable {
+public class TemperingGlassInfo extends BigStorageCageBaseInfo implements Serializable {
 
     private static final long serialVersionUID = 1L;
 
@@ -30,12 +30,6 @@
     @ApiModelProperty(value = "閽㈠寲灏忕墖淇℃伅琛╥d", position = 2)
     @TableId(value = "id", type = IdType.AUTO)
     private Long id;
-
-    /**
-     * 鐜荤拑id
-     */
-    @ApiModelProperty(value = "鐜荤拑id", position = 3)
-    private String glassId;
 
     /**
      * 娴佺▼鍗�
@@ -50,28 +44,22 @@
     private Integer glassType;
 
     /**
-     * 瀹�
-     */
-    @ApiModelProperty(value = "瀹�", position = 6)
-    private Double width;
-
-    /**
      * 楂�
      */
     @ApiModelProperty(value = "楂�", position = 7)
-    private Double height;
+    private double height;
 
     /**
      * 鍘氬害
      */
     @ApiModelProperty(value = "鍘氬害", position = 8)
-    private Double thickness;
+    private double thickness;
 
     /**
      * 鑶滅郴
      */
     @ApiModelProperty(value = "鑶滅郴", position = 9)
-    private Integer filmsid;
+    private String filmsid;
 
     /**
      * 閽㈠寲鏄惁鎺ュ彈妯斁
@@ -114,10 +102,5 @@
      */
     @ApiModelProperty(value = "鐘舵��", position = 16)
     private Integer state;
-    /**
-     * 鏍煎瓙鍙�
-     */
-    private Integer slot;
-
 
 }

--
Gitblit v1.8.0