视频会议

This commit is contained in:
18792927508
2024-01-19 11:09:30 +08:00
parent 3164ff90a4
commit fd4a2e4c23
19 changed files with 1131 additions and 34 deletions
@@ -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>