From 810f2a7f105b0be0de87c7f4b58ea28394bc9b40 Mon Sep 17 00:00:00 2001 From: Chendy <596813911@qq.com> Date: Thu, 24 Jul 2025 10:21:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A3=80=E6=9F=A5=E8=AE=A1?= =?UTF-8?q?=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../code/statistical/staticProgram.html | 182 +++++++++++++----- .../zdxtLawEnforcementCodeService/pom.xml | 5 + ...nforcementInspectionProgramController.java | 57 ++++++ .../dto/EnforcementInspectionProgramDto.java | 24 +++ .../EnforcementInspectionProgramMapper.java | 14 ++ .../IEnforcementInspectionProgramService.java | 7 + ...forcementInspectionProgramServiceImpl.java | 78 +++++++- .../EnforcementInspectionProgramMapper.xml | 74 ++++++- 8 files changed, 390 insertions(+), 51 deletions(-) diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/statistical/staticProgram.html b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/statistical/staticProgram.html index 002b8677..3cb0899f 100644 --- a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/statistical/staticProgram.html +++ b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/statistical/staticProgram.html @@ -29,39 +29,14 @@
+ +
  • 执法部门:

  • -
  • 时段:

    SELECT bureau_dept_name, + bureau_dept_id, count(*) as total, SUM(CASE WHEN time_type = 'year' THEN 1 ELSE 0 END ) as yearTotal, SUM(CASE WHEN time_type = 'quarter' THEN 1 ELSE 0 END ) as quarterTotal, @@ -204,7 +205,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ${params.dataScope} AND bureau_dept_id is not null - and time_type is not null + and time_type is not null and time_type !='0' and (plan_year is not null or quarter is not null or mouth is not null) GROUP BY bureau_dept_id @@ -448,4 +449,75 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" order by create_time desc + + + + + \ No newline at end of file