From ec6b75cfebe87ad118aba001708e686bf28e2fde Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 03 八月 2026 20:57:04 +0800
Subject: [PATCH] 1.新增同德药品采集、宣教功能 2.处理新华采集BUG 3.新增service_subtask的院区ID 4.采集同德的入院申请单信息 5.给出院表新增药品字段、入院申请单字段
---
ruoyi-system/src/main/resources/mapper/system/SysUserDeptMapper.xml | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/ruoyi-system/src/main/resources/mapper/system/SysUserDeptMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysUserDeptMapper.xml
index 3ebd0e5..4795ebc 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysUserDeptMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysUserDeptMapper.xml
@@ -71,7 +71,7 @@
<if test="deptCode != null ">
and dept_code = #{deptCode}
</if>
- <if test="campusid != null ">
+ <if test="campusid != null and campusid != ''">
and campusid = #{campusid}
</if>
</select>
@@ -237,6 +237,24 @@
where user_id =#{userId} and dept_code=#{deptCode}
</update>
+ <update id="deleteSysUserDeptByUserId" parameterType="String">
+ update sys_user_dept
+ <trim prefix="SET" suffixOverrides=",">
+ del_flag =1,
+ update_time = sysdate()
+ </trim>
+ where del_flag = 0
+ <if test="userId != null">
+ and user_id =#{userId}
+ </if>
+ <if test="orgid != null ">
+ and orgid = #{orgid}
+ </if>
+ <if test="deptType != null ">
+ and dept_type = #{deptType}
+ </if>
+ </update>
+
<update id="updateSysUserDeptForSync" parameterType="com.ruoyi.common.core.domain.entity.SysUserDept">
update sys_user_dept
<trim prefix="SET" suffixOverrides=",">
--
Gitblit v1.9.3