Merge branch 'master' into docker_package

This commit is contained in:
wangliwen 2022-07-18 18:53:10 +08:00
commit 480fdec445
1 changed files with 2 additions and 0 deletions

View File

@ -123,6 +123,7 @@
LEFT JOIN sys_dept sd ON tdr.dept_id = sd.id
WHERE 1 = 1
AND tdr.del_flag = 0
AND tdr.type != '赋能案例'
<if test="dto.type != null and dto.type != ''">
AND MATCH (tdr.type) AGAINST ( #{dto.type} IN BOOLEAN MODE)
</if>
@ -373,6 +374,7 @@
LEFT JOIN sys_dept sd ON tdr.dept_id = sd.id
WHERE 1 = 1
AND tdr.del_flag = 0
AND tdr.type != '赋能案例'
<if test="dto.name != null and dto.name != ''">
AND MATCH (tdr.name) AGAINST ( #{dto.name} IN BOOLEAN MODE)
</if>