From e9a28062b899087b341514702efe370b3c6df3d4 Mon Sep 17 00:00:00 2001
From: Fancy <Fancy.fx@outlook.com>
Date: 星期三, 16 十月 2024 17:22:02 +0800
Subject: [PATCH] statistic workload change

---
 pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml |   43 ++++++++++++++++++++++++++++---------------
 1 files changed, 28 insertions(+), 15 deletions(-)

diff --git a/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml
index 1763752..b0309e6 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml
@@ -16,6 +16,9 @@
     <!--@mbg.generated-->
     id, org_name, ext_name, new_name, hash, file_path, dt
   </sql>
+  <sql id="Join_Column_List">
+    ${alias}.id, ${alias}.org_name, ${alias}.ext_name, ${alias}.new_name, ${alias}.hash, ${alias}.file_path, ${alias}.dt
+  </sql>
   <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
     <!--@mbg.generated-->
     select 
@@ -42,19 +45,19 @@
       <if test="id != null">
         id,
       </if>
-      <if test="orgName != null">
+      <if test="orgName!= null and orgName !=''">
         org_name,
       </if>
-      <if test="extName != null">
+      <if test="extName!= null and extName !=''">
         ext_name,
       </if>
-      <if test="newName != null">
+      <if test="newName!= null and newName !=''">
         new_name,
       </if>
-      <if test="hash != null">
+      <if test="hash!= null">
         hash,
       </if>
-      <if test="filePath != null">
+      <if test="filePath!= null and filePath !=''">
         file_path,
       </if>
       <if test="dt != null">
@@ -65,19 +68,19 @@
       <if test="id != null">
         #{id},
       </if>
-      <if test="orgName != null">
+      <if test="orgName!= null and orgName !=''">
         #{orgName},
       </if>
-      <if test="extName != null">
+      <if test="extName!= null and extName !=''">
         #{extName},
       </if>
-      <if test="newName != null">
+      <if test="newName!= null and newName !=''">
         #{newName},
       </if>
-      <if test="hash != null">
+      <if test="hash!= null">
         #{hash},
       </if>
-      <if test="filePath != null">
+      <if test="filePath!= null and filePath !=''">
         #{filePath},
       </if>
       <if test="dt != null">
@@ -89,19 +92,19 @@
     <!--@mbg.generated-->
     update oth_file
     <set>
-      <if test="orgName != null">
+      <if test="orgName!= null and orgName !=''">
         org_name = #{orgName},
       </if>
-      <if test="extName != null">
+      <if test="extName!= null and extName !=''">
         ext_name = #{extName},
       </if>
-      <if test="newName != null">
+      <if test="newName!= null and newName !=''">
         new_name = #{newName},
       </if>
-      <if test="hash != null">
+      <if test="hash!= null">
         hash = #{hash},
       </if>
-      <if test="filePath != null">
+      <if test="filePath!= null and filePath !=''">
         file_path = #{filePath},
       </if>
       <if test="dt != null">
@@ -121,4 +124,14 @@
       dt = #{dt}
     where id = #{id}
   </update>
+
+  <select id="selectByProId" resultMap="BaseResultMap">
+    select
+    <include refid="Join_Column_List">
+        <property name="alias" value="f"/>
+    </include>
+    from oth_file f
+    inner join plt_product_file pf on f.id = pf.file_id
+    where pf.pro_id = #{proId}
+  </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0