From b977364facab9c6bf1b92f9815100b15a30443ff Mon Sep 17 00:00:00 2001
From: ZengTao <2773468879@qq.com>
Date: 星期三, 08 五月 2024 17:00:07 +0800
Subject: [PATCH] 修改plc连接报警条件
---
springboot-vue3/src/main/java/com/example/springboot/entity/Out_slice.java | 122 ++++++++++++++++++++++++++++++++++++++--
1 files changed, 115 insertions(+), 7 deletions(-)
diff --git a/springboot-vue3/src/main/java/com/example/springboot/entity/Out_slice.java b/springboot-vue3/src/main/java/com/example/springboot/entity/Out_slice.java
index 6b13c63..68949b5 100644
--- a/springboot-vue3/src/main/java/com/example/springboot/entity/Out_slice.java
+++ b/springboot-vue3/src/main/java/com/example/springboot/entity/Out_slice.java
@@ -1,13 +1,34 @@
package com.example.springboot.entity;
+//鍑虹墖闃熷垪琛�
public class Out_slice {
- private int id;
- private String glassId;
- private String barcode;
- private double glasswidth;
- private double glassheight;
- private int state;
- private String time;
+ private int id;//鑷id
+ private String glassId;//鐜荤拑id
+ private String barcode;//閾濇id
+ private double glasswidth;//鐜荤拑瀹�
+ private double glassheight;//鐜荤拑楂�
+ private int state;//鍑虹墖鐘舵��
+ private int flip;//鏄惁缈昏浆
+ private String time;//淇敼鏃堕棿
+ private int sequence;//鍑虹墖椤哄簭
+ private String position;//鐜荤拑鎽嗘斁浣嶇疆
+ private String orderId;//鐜荤拑id
+ private String listId;//闆嗗悎id
+ private String boxId;//绠卞瓙id
+ private double glasswidthmm;//鐜荤拑瀹絤m
+ private double glassheightmm;//鐜荤拑楂榤m
+ private int framestate;//閾濇鐘舵��
+ private double framewidthmm;
+ private double frameheightmm;
+ private String cell;//鏍煎瓙鍙�
+
+ public String getPosition() {
+ return position;
+ }
+
+ public void setPosition(String position) {
+ this.position = position;
+ }
private north_glass_buffer1 north_glass_buffer1s;
@@ -40,6 +61,14 @@
this.glassheight = glassheight;
this.state = state;
this.time = time;
+ }
+
+ public int getFlip() {
+ return flip;
+ }
+
+ public void setFlip(int flip) {
+ this.flip = flip;
}
public int getID() {
@@ -98,4 +127,83 @@
this.time = time;
}
+ public int getSequence() {
+ return sequence;
+ }
+
+ public void setSequence(int sequence) {
+ this.sequence = sequence;
+ }
+
+ public String getOrderId() {
+ return orderId;
+ }
+
+ public void setOrderId(String orderId) {
+ this.orderId = orderId;
+ }
+
+ public Double getGlassWidthMm() {
+ return glasswidthmm;
+ }
+
+ public void setGlassWidthMm(Double glasswidthmm) {
+ this.glasswidthmm = glasswidthmm;
+ }
+
+ public Double getGlassHeightMm() {
+ return glassheightmm;
+ }
+
+ public void setGlassHeightMm(Double glassheightmm) {
+ this.glassheightmm = glassheightmm;
+ }
+ public String getListId() {
+ return listId;
+ }
+
+ public void setListno(String listId) {
+ this.listId = listId;
+ }
+
+ public String getBoxId() {
+ return boxId;
+ }
+
+ public void setBoxno(String boxId) {
+ this.boxId = boxId;
+ }
+
+ public int getFrameState() {
+ return framestate;
+ }
+
+ public void SetFrameState(int framestate) {
+ this.framestate = framestate;
+ }
+
+ public double getFrameWidthMm() {
+ return framewidthmm;
+ }
+
+ public void setFrameWidthMm(double framewidthmm) {
+ this.framewidthmm = framewidthmm;
+ }
+
+ public double getFrameHeightMm() {
+ return frameheightmm;
+ }
+
+ public void setFrameHeightMm(double frameheightmm) {
+ this.frameheightmm = frameheightmm;
+ }
+
+ public String getCell() {
+ return cell;
+ }
+
+ public void setCell(String cell) {
+ this.cell = cell;
+ }
+
}
--
Gitblit v1.8.0