From 5b207a55bdd10f1516031f629217daac069b64fd Mon Sep 17 00:00:00 2001
From: 刘小明 <liuxm_a@163.com>
Date: 星期五, 30 八月 2024 11:40:31 +0800
Subject: [PATCH] 添加免登录查询所有排班接口;

---
 pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml |   10 +++++-----
 1 files changed, 5 insertions(+), 5 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 a29bce5..894444d 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/OthFileMapper.xml
@@ -42,7 +42,7 @@
     <!--@mbg.generated-->
     insert into oth_file
     <trim prefix="(" suffix=")" suffixOverrides=",">
-      <if test="id != null and id !=''">
+      <if test="id != null">
         id,
       </if>
       <if test="orgName!= null and orgName !=''">
@@ -54,7 +54,7 @@
       <if test="newName!= null and newName !=''">
         new_name,
       </if>
-      <if test="hash!= null and hash !=''">
+      <if test="hash!= null">
         hash,
       </if>
       <if test="filePath!= null and filePath !=''">
@@ -65,7 +65,7 @@
       </if>
     </trim>
     <trim prefix="values (" suffix=")" suffixOverrides=",">
-      <if test="id != null and id !=''">
+      <if test="id != null">
         #{id},
       </if>
       <if test="orgName!= null and orgName !=''">
@@ -77,7 +77,7 @@
       <if test="newName!= null and newName !=''">
         #{newName},
       </if>
-      <if test="hash!= null and hash !=''">
+      <if test="hash!= null">
         #{hash},
       </if>
       <if test="filePath!= null and filePath !=''">
@@ -101,7 +101,7 @@
       <if test="newName!= null and newName !=''">
         new_name = #{newName},
       </if>
-      <if test="hash!= null and hash !=''">
+      <if test="hash!= null">
         hash = #{hash},
       </if>
       <if test="filePath!= null and filePath !=''">

--
Gitblit v1.8.0