修改查询预约条数,及更新显示条数

This commit is contained in:
chenshaohua
2026-07-20 19:09:12 +08:00
parent 23743ff261
commit bc2427cfe3
5 changed files with 36 additions and 1 deletions

View File

@@ -88,7 +88,7 @@
</select>
<select id="selectMsyyhbs" resultType="com.ruoyi.cms.domain.vo.InviteCountDTO">
select count(1) total,sum(case when t.status='accepted' then 1 else 0 END) jss,
select count(1) total,sum(case when t.status='accepted' and is_show='0' then 1 else 0 END) jss,
sum(case when t.status='rejected' then 1 else 0 END) jjs from interview_invitation t
INNER join company cp on t.company_id=cp.company_id
where cp.code=#{idCard}