业务统计增加行政处罚信用修复统计

This commit is contained in:
廖成初 2026-01-10 17:57:40 +08:00
parent 78e3574f7c
commit d7b4c168bd
2 changed files with 24 additions and 0 deletions

View File

@ -66,6 +66,21 @@ public class ComprehensiveStat implements Serializable {
*/
private int legycnumoff;
/**
* 行政处罚信用修复
*/
private int penxfnum;
/**
* 行政处罚信用修复线上申请
*/
private int penxfnumon;
/**
* 行政处罚信用修复线下申请
*/
private int penxfnumoff;
/**
* 年报公示信息异议反馈
*/

View File

@ -662,6 +662,9 @@
sum(legycnum) as legycnum,
sum(legycnumon) as legycnumon,
sum(legycnumoff) as legycnumoff,
sum(penxfnum) as penxfnum,
sum(penxfnumon) as penxfnumon,
sum(penxfnumoff) as penxfnumoff,
sum(ualfknum) as ualfknum,
sum(mytrnum) as mytrnum,
sum(wtcznum) as wtcznum,
@ -687,6 +690,9 @@
rs1.legycnum,
rs1.legycnumon,
rs1.legycnumoff,
rs1.penxfnum,
rs1.penxfnumon,
rs1.penxfnumoff,
rs1.ualfknum,
rs1.mytrnum,
rs1.wtcznum,
@ -712,6 +718,9 @@
count(case when bustype='17' then 1 else null end) as legycnum,
count(case when bustype='17' and origin='1' then 1 else null end) as legycnumon,
count(case when bustype='17' and (origin is null or origin!='1') then 1 else null end) as legycnumoff,
count(case when bustype='27' then 1 else null end) as penxfnum,
count(case when bustype='27' and origin='1' then 1 else null end) as penxfnumon,
count(case when bustype='27' and (origin is null or origin!='1') then 1 else null end) as penxfnumoff,
count(case when bustype='30' then 1 else null end) as ualfknum,
count(case when bustype='31' then 1 else null end) as mytrnum,
count(case when bustype='32' then 1 else null end) as wtcznum,