This commit is contained in:
2024-06-27 19:33:10 +08:00
parent b146da4867
commit 467906b686

View File

@@ -6,7 +6,7 @@
</update>
<select id="statisticPlanReport" resultType="ProcessPublicDTO">
select count(1) value,supv_Org_Id id from supv_plan
select count(1) value,plan_Org_Id id from supv_plan
where
(delete_Flag = 0 or delete_Flag is null ) and
supv_Type = #{statisticType}
@@ -22,7 +22,7 @@
#{item}
</foreach>
</if>
group by supv_Org_Id
group by plan_Org_Id
</select>
<select id="statisticQueReport" resultType="ProcessPublicDTO">
@@ -61,7 +61,7 @@
group by a.duty_Org_Id
</select>
<select id="statisticPlanReportYear" resultType="com.njcn.process.pojo.dto.ProcessPublicDTO">
select count(1) value,supv_Org_Id id from supv_plan
select count(1) value,plan_Org_Id id from supv_plan
where
(delete_Flag = 0 or delete_Flag is null ) and
supv_Type = #{statisticType}
@@ -77,6 +77,6 @@
#{item}
</foreach>
</if>
group by supv_Org_Id
group by plan_Org_Id
</select>
</mapper>