From 1ac37f17a1e674337ea924e9f930725575cee15d Mon Sep 17 00:00:00 2001 From: wuyouming666 <2265557248@qq.com> Date: 星期一, 20 五月 2024 13:47:44 +0800 Subject: [PATCH] 修改A01手动格子范围 ,A02翻转启动按钮 --- springboot-vue3/src/main/java/com/example/springboot/entity/Out_slice.java | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 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 51c5233..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,4 +1,5 @@ package com.example.springboot.entity; + //鍑虹墖闃熷垪琛� public class Out_slice { private int id;//鑷id @@ -16,6 +17,10 @@ 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; @@ -168,4 +173,37 @@ 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