发送房间号修改

This commit is contained in:
18792927508
2023-10-10 17:47:12 +08:00
parent 2eed2bd0a9
commit f0f65d0cf0
7 changed files with 24 additions and 30 deletions
@@ -36,21 +36,5 @@
</where>
</select>
<select id="selectArbitratorById" resultMap="ArbitratorResult">
select a.id ,a.arbitrator_name ,a.title ,a.career ,a.professi_classifi ,
a.education ,a.area ,a.telephone ,a.current_case_num ,a.closed_case_num
from arbitrator a
<where>
<if test="caseAppliId != null and caseAppliId != ''">
AND ca.ase_appliId=#{caseAppliId}
</if>
<if test="identityType != null and identityType != ''">
a.identity_type=#{identityType}
</if>
</where>
</select>
</mapper>
@@ -33,6 +33,20 @@
</if>
</where>
</select>
<select id="selectCaseAffiliateByIdentityType" resultMap="CaseAffiliateResult">
select c.id ,c.case_appli_id ,c.identity_type ,c.name ,c.identity_num ,c.contact_telphone ,c.contact_address ,
c.work_address ,c.work_telphone ,c.name_agent, c.identity_num_agent ,c.contact_telphone_agent ,c.contact_address_agent,
c.track_num
from case_affiliate c
<where>
<if test="caseAppliId != null ">
AND c.case_appli_id = #{caseAppliId}
</if>
<if test="caseAppliId != null ">
AND c.identity_type = #{identityType}
</if>
</where>
</select>
<insert id="batchCaseAffiliate">