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

View File

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