From 94b0e7a4c48d5d6c9466747084fb7ffb7d833fe1 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期五, 24 四月 2026 09:21:18 +0800
Subject: [PATCH] 入库电视托数和耗时优化

---
 src/main/java/com/zy/asrs/service/impl/BasArmRulesServiceImpl.java |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/zy/asrs/service/impl/BasArmRulesServiceImpl.java b/src/main/java/com/zy/asrs/service/impl/BasArmRulesServiceImpl.java
index 5370593..4cbcaaa 100644
--- a/src/main/java/com/zy/asrs/service/impl/BasArmRulesServiceImpl.java
+++ b/src/main/java/com/zy/asrs/service/impl/BasArmRulesServiceImpl.java
@@ -33,4 +33,14 @@
     public boolean updateStatus(Double materialLength,Double materialWidth,Double materialHeight,Double materialWeight,Double materialNumber,int status){
         return this.baseMapper.updateStatus(materialLength,materialWidth,materialHeight,materialWeight,materialNumber,status);
     }
+
+    @Override
+    public Integer getNumber(Double weight,Double volume,Double length,Double width,Double height){
+        return this.baseMapper.getNumber(weight,volume,length,width,height);
+    }
+
+    @Override
+    public Integer getStatus(Double weight,Double volume,Double length,Double width,Double height){
+        return this.baseMapper.getStatus(weight,volume,length,width,height);
+    }
 }

--
Gitblit v1.9.1