1.技术监督月报数据调整

This commit is contained in:
wr
2024-01-10 09:51:47 +08:00
parent c47db8a4d2
commit 17dc9c86fc
2 changed files with 82 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
package com.njcn.process.pojo.po;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.github.jeffreyning.mybatisplus.anno.MppMultiId;
@@ -223,5 +224,40 @@ public class SupvReportM {
private Integer isUploadHead;
/**
* 各类型本年监督数量
*/
@TableField(exist = false)
private Integer planYearCountNum;
/**
* 各类型累计监督数量
*/
@TableField(exist = false)
private Integer planCountNum;
/**
* 各类型累计问题数量
*/
@TableField(exist = false)
private Integer problemCountNum;
/**
* 各类型整改问题数量
*/
@TableField(exist = false)
private Integer reformCountNum;
/**
* 预告警单数量
*/
@TableField(exist = false)
private Integer alarmCountNum;
/**
* 反馈单数量
*/
@TableField(exist = false)
private Integer alarmBackCountNum;
}