From bd8abc24af2e6775a6a6ca72de2162065346aab9 Mon Sep 17 00:00:00 2001 From: wu <731351411@qq.com> Date: 星期一, 30 十月 2023 11:05:24 +0800 Subject: [PATCH] 多片进出逻辑修改 --- springboot-vue3/src/main/java/com/example/springboot/entity/Glass.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/springboot-vue3/src/main/java/com/example/springboot/entity/Glass.java b/springboot-vue3/src/main/java/com/example/springboot/entity/Glass.java index 1dad942..24579c0 100644 --- a/springboot-vue3/src/main/java/com/example/springboot/entity/Glass.java +++ b/springboot-vue3/src/main/java/com/example/springboot/entity/Glass.java @@ -2,7 +2,7 @@ public class Glass{ private Integer id; - private Short orderId; + private String orderId; private double glassWidth; private double glassHeight; private String glassId; @@ -19,11 +19,11 @@ return id; } - public Short getOrderId() { + public String getOrderId() { return orderId; } - public void setOrderId(Short orderId) { + public void setOrderId(String orderId) { this.orderId = orderId; } -- Gitblit v1.8.0