mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-12-02 14:26:09 +08:00
fix 修复 user与dept xml 编写错误
This commit is contained in:
@@ -8,7 +8,14 @@
|
||||
</resultMap>
|
||||
|
||||
<select id="selectDeptList" resultMap="SysDeptResult">
|
||||
select ${ew.getSqlSelect} from sys_dept ${ew.getCustomSqlSegment}
|
||||
select
|
||||
<if test="ew.getSqlSelect != null">
|
||||
${ew.getSqlSelect}
|
||||
</if>
|
||||
<if test="ew.getSqlSelect == null">
|
||||
*
|
||||
</if>
|
||||
from sys_dept ${ew.getCustomSqlSegment}
|
||||
</select>
|
||||
|
||||
<select id="countDeptById" resultType="Long">
|
||||
|
||||
Reference in New Issue
Block a user