|
@@ -55,18 +55,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="meetingId != null "> and u.meeting_id = #{meetingId}</if>
|
|
|
<if test="meetingType != null and meetingType != ''"> and u.meeting_type = #{meetingType}</if>
|
|
|
<if test="meetingTime != null "> and u.meeting_time = #{meetingTime}</if>
|
|
|
- <if test="meetingVenue != null and meetingVenue != ''"> and u.meeting_venue = #{meetingVenue}</if>
|
|
|
+ <if test="meetingVenue != null and meetingVenue != ''"> and u.meeting_venue like concat(concat('%', #{meetingVenue}), '%')</if>
|
|
|
<if test="host != null and host != ''"> and u.host = #{host}</if>
|
|
|
<if test="recorder != null and recorder != ''"> and u.recorder = #{recorder}</if>
|
|
|
<if test="participants != null and participants != ''"> and u.participants = #{participants}</if>
|
|
|
<if test="absentees != null and absentees != ''"> and u.absentees = #{absentees}</if>
|
|
|
<if test="attendees != null and attendees != ''"> and u.attendees = #{attendees}</if>
|
|
|
- <if test="mainTopics != null and mainTopics != ''"> and u.main_topics = #{mainTopics}</if>
|
|
|
- <if test="resolutionsFormed != null and resolutionsFormed != ''"> and u.resolutions_formed = #{resolutionsFormed}</if>
|
|
|
- <if test="remarks != null and remarks != ''"> and u.remarks = #{remarks}</if>
|
|
|
- <if test="deptId != null and deptId != 0">
|
|
|
- AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE find_in_set(#{deptId}, ancestors) <![CDATA[ <> ]]> 0 )))
|
|
|
- </if>
|
|
|
+ <if test="mainTopics != null and mainTopics != ''"> and u.main_topics like concat(concat('%', #{mainTopics}), '%')</if>
|
|
|
+ <if test="resolutionsFormed != null and resolutionsFormed != ''"> and u.resolutions_formed like concat(concat('%', #{resolutionsFormed}), '%')</if>
|
|
|
+ <if test="remarks != null and remarks != ''"> and u.remarks like concat(concat('%', #{remarks}), '%')</if>
|
|
|
+ <if test="deptId != null "> and u.dept_id = #{deptId}</if>
|
|
|
and u.del_flag = 0
|
|
|
</where>
|
|
|
<!-- 数据范围过滤 -->
|