From 28ded8102d83cf74bc232d1cdfc89b7f22c41952 Mon Sep 17 00:00:00 2001 From: wu <731351411@qq.com> Date: 星期二, 03 十二月 2024 09:09:31 +0800 Subject: [PATCH] 增加点击防抖事件 增加笼子使用详情的计算优化。 增加数据推送时的报错处理 测量台交互逻辑增加 参数界面增加翻转加减速度 --- springboot-vue3/src/main/java/com/example/springboot/entity/StorageTask.java | 16 +++++++++++++--- 1 files changed, 13 insertions(+), 3 deletions(-) diff --git a/springboot-vue3/src/main/java/com/example/springboot/entity/StorageTask.java b/springboot-vue3/src/main/java/com/example/springboot/entity/StorageTask.java index a9dacfe..d94a070 100644 --- a/springboot-vue3/src/main/java/com/example/springboot/entity/StorageTask.java +++ b/springboot-vue3/src/main/java/com/example/springboot/entity/StorageTask.java @@ -12,9 +12,19 @@ private String loadrack;//鐩爣浣� private Integer count;//鐜荤拑鏁伴噺 private Integer glasstype;//鐜荤拑绫诲瀷 - private Integer flowcard;//娴佺▼鍗� + private String flowcard;//娴佺▼鍗� private Integer mateid;//閰嶇墖id + private Integer tier;//鐗囧簭 + + private StorageCage storageCage; + public void setstorageCage(StorageCage storageCage) { + this.storageCage = storageCage; + } + + public StorageCage getstorageCage() { + return storageCage; + } public Integer id() { return id; @@ -79,11 +89,11 @@ public void setGlasstype(Integer glasstype) { this.glasstype = glasstype; } - public Integer getFlowcard() { + public String getFlowcard() { return flowcard; } - public void setFlowcard(Integer flowcard) { + public void setFlowcard(String flowcard) { this.flowcard = flowcard; } public Integer getMateid() { return mateid; -- Gitblit v1.8.0