视频会议
This commit is contained in:
+16
@@ -37,4 +37,20 @@
|
||||
<result column="adjudica_counter_reason" jdbcType="LONGVARCHAR" property="adjudicaCounterReason" />
|
||||
<result column="mediation_agreement" jdbcType="LONGVARCHAR" property="mediationAgreement" />
|
||||
</resultMap>
|
||||
|
||||
<select id="listMediator" resultMap="BaseResultMap">
|
||||
select mediator_id ,id from ms_case_application <where>
|
||||
<if test = 'userIds!=null and userIds.size()>0'>
|
||||
and mediator_id in
|
||||
<foreach item='item' index='index' collection='userIds' open='(' separator=',' close=')'>
|
||||
#{item}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test = 'recordCaeIdList!=null and recordCaeIdList.size()>0'> and id not in
|
||||
<foreach item='id' index='index' collection='recordCaeIdList' open='(' separator=',' close=')'>
|
||||
#{id}
|
||||
</foreach>
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user