实现组庭审核时仲裁员待办案件数据显示

This commit is contained in:
qitz
2023-12-14 15:51:09 +08:00
parent 0e96b4d8f4
commit 5eb7b070fd
4 changed files with 65 additions and 3 deletions
@@ -1254,6 +1254,14 @@
<select id="selectArbitratorList" resultType="java.lang.String">
select a.arbitrator_id id from case_application a where a.id=#{id}
</select>
<select id="selectCasenum" resultType="java.lang.Integer">
SELECT count(1)
from case_application c
where c.arbitrator_id = #{userId}
and c.case_status in(8,9)
</select>
<select id="selectCaseIdByRoomId" resultType="java.lang.Long">
select id
from case_application where room_id=#{roomId} limit 1