From 0871a25215fb468f121785600f796a14b54d8ebc Mon Sep 17 00:00:00 2001
From: lyh <925863403@qq.com>
Date: 星期五, 06 六月 2025 15:47:00 +0800
Subject: [PATCH] 1.刀具添加字段 2.新增dnc传输日志表 3.导入NC文件默认产生nc文件对应数控程序加工确认表 4.拆分两网 修改yml配置

---
 lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/GoodsShelvesMapper.xml |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/GoodsShelvesMapper.xml b/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/GoodsShelvesMapper.xml
index ff45cb3..24e6248 100644
--- a/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/GoodsShelvesMapper.xml
+++ b/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/mapper/xml/GoodsShelvesMapper.xml
@@ -22,4 +22,20 @@
         LEFT JOIN tms_warehouse p on t.warehouse_id = p.id
         ${ew.customSqlSegment}
     </select>
+    <select id="queryGoodsShelvesDictList" resultType="org.jeecg.modules.tms.entity.vo.DictVo">
+        SELECT DISTINCT
+            shelf_number value,
+            ISNULL(shelf_number, '') + '/' + ISNULL(shelf_name, '') label,
+            ISNULL(shelf_number, '') + '/' + ISNULL(shelf_name, '') title
+        FROM tms_goods_shelves
+        where warehouse_id = #{warehouseId}
+    </select>
+    <select id="queryGoodsShelvesStoreyDictList" resultType="org.jeecg.modules.tms.entity.vo.DictVo">
+        SELECT DISTINCT
+            storey value,
+            storey label,
+            storey title
+        FROM tms_goods_shelves
+        WHERE warehouse_id = #{warehouseId} AND shelf_number = #{shelfNumber}
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.3