This commit is contained in:
parent
3bdec35655
commit
e7b8188f36
|
@ -2018,6 +2018,9 @@
|
|||
<if test="resourceName != null and resourceName != ''">
|
||||
AND tdr.name LIKE CONCAT( '%', #{resourceName}, '%' )
|
||||
</if>
|
||||
<if test="provideDept != null and provideDept != ''">
|
||||
AND dept.`name` LIKE CONCAT( '%', #{provideDept}, '%' )
|
||||
</if>
|
||||
<if test="startDate != null and startDate != '' and endDate != null and endDate != ''">
|
||||
AND SUBSTR(taa.create_date, 1, 10) BETWEEN #{startDate} AND #{endDate}
|
||||
</if>
|
||||
|
@ -2053,6 +2056,9 @@
|
|||
<if test="deptId != null and deptId != ''">
|
||||
AND tmb.dept = #{deptId}
|
||||
</if>
|
||||
<if test="provideDept != null and provideDept != ''">
|
||||
AND '青岛市大数据发展管理局' LIKE CONCAT( '%', #{provideDept}, '%' )
|
||||
</if>
|
||||
<if test="resourceName != null and resourceName != ''">
|
||||
AND tm.name LIKE CONCAT( '%', #{resourceName}, '%' )
|
||||
</if>
|
||||
|
|
Loading…
Reference in New Issue