From aca4324415aba0e5462ae6462ca8d99ca282b71c Mon Sep 17 00:00:00 2001
From: whyclxw <810412026@qq.com>
Date: 星期四, 13 三月 2025 10:38:29 +0800
Subject: [PATCH] 批量添加源码包

---
 src/main/resources/mapper/SoftwareMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/SoftwareMapper.xml b/src/main/resources/mapper/SoftwareMapper.xml
index d6c3597..81e51ab 100644
--- a/src/main/resources/mapper/SoftwareMapper.xml
+++ b/src/main/resources/mapper/SoftwareMapper.xml
@@ -48,4 +48,10 @@
     <select id="selectSoftWare" resultType="software">
         select * from tb_software where file_url=#{fileUrl} and lock_flag = #{lockFlag}
     </select>
+    <select id="getFileNameByOwnerWithCode" resultType="com.whyc.pojo.Software">
+        SELECT distinct file_name,based_version,owner
+        FROM tb_software w
+        LEFT JOINtb_softcode c ON w.file_name = c.file_name
+        WHERE c.file_name IS NULL;
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.1