From 8dfb37b10ffb2fcb41c85b3fa266d1ef2874aebc Mon Sep 17 00:00:00 2001
From: wuyouming666 <2265557248@qq.com>
Date: 星期四, 30 十一月 2023 08:53:27 +0800
Subject: [PATCH] 修改电气管理PLC通讯逻辑

---
 springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java |   52 +++++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 47 insertions(+), 5 deletions(-)

diff --git a/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java b/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java
index 24fd64c..30e8ff6 100644
--- a/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java
+++ b/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java
@@ -1,5 +1,7 @@
 package com.example.springboot.entity;
 
+
+
 public class StorageCage {
     private Integer id;
     private Integer prcId;
@@ -12,8 +14,30 @@
     private String state;
     private Integer tier;
     private String orderId;
-    private String coating;
+    private Integer disabled;
     private String lengthWidth;
+    private String listno;
+    private String boxno;
+
+    private north_glass_buffer1 north_glass_buffer1s;
+
+    public void setnorth_glass_buffer1s(north_glass_buffer1 north_glass_buffer1s) {
+        this.north_glass_buffer1s = north_glass_buffer1s;
+    }
+    
+    public north_glass_buffer1 getnorth_glass_buffer1s() {
+        return north_glass_buffer1s;
+    }
+
+    private Out_slice outSlice;
+
+    public void setout_slice(Out_slice outSlice) {
+        this.outSlice = outSlice;
+    }
+    
+    public Out_slice getout_slice() {
+        return outSlice;
+    }
 
     public Integer id() {
         return id;
@@ -107,12 +131,12 @@
         this.glassheight = glassheight;
     }
 
-    public String getCoating() {
-        return coating;
+    public Integer getDisabled() {
+        return disabled;
     }
 
-    public void setCoating(String coating) {
-        this.coating = coating;
+    public void setDisabled(Integer disabled) {
+        this.disabled = disabled;
     }
 
     public String getLengthWidth() {
@@ -122,4 +146,22 @@
     public void setLengthWidth(String lengthWidth) {
         this.lengthWidth = lengthWidth;
     }
+
+    public String getListno() {
+        return listno;
+    }
+
+    public void setListno(String listno) {
+        this.listno = listno;
+    }
+
+    public String getBoxno() {
+        return boxno;
+    }
+
+    public void setBoxno(String boxno) {
+        this.boxno = boxno;
+    }
+
+    
 }

--
Gitblit v1.8.0