首页修改

This commit is contained in:
skjia 2024-07-29 10:26:01 +08:00
parent 070c566c03
commit c8395d45b9
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<mapper namespace="com.bonus.aqgqj.basis.dao.HomeDao">
<select id="getApprovalNum" parameterType="com.bonus.aqgqj.basis.entity.vo.HomeVo" resultType="com.bonus.aqgqj.basis.entity.vo.HomeVo">
select
sum(case when team_id is null then 0 else 1 end ) as dispatchWorkNum
sum(case when team_id is null then 1 else 0 end ) as dispatchWorkNum
,sum(case when team_id is not null and process_status is null then 1 else 0 end ) as testNum
,sum(case when process_status='1' and remarks is not null then 1 else 0 end ) as reloadReviewNUm
,sum(case when process_status='1' and remarks is null then 1 else 0 end ) as reviewNUm