Compare commits

...

2 Commits

Author SHA1 Message Date
skjia 6d4b69605d Merge branch 'master' of http://192.168.0.56:3000/haozq/ah_sz_gqj 2024-07-29 10:26:30 +08:00
skjia c8395d45b9 首页修改 2024-07-29 10:26:01 +08:00
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