Compare commits

..

No commits in common. "6d4b69605d0c050941602b66ff6656f5b36acf8e" and "e2c611594ca4825af941e10ba87ab7f916d68eb6" have entirely different histories.

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 1 else 0 end ) as dispatchWorkNum
sum(case when team_id is null then 0 else 1 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