From 93c015157fd3d454a7ec0bdb56e4e34bef78afae Mon Sep 17 00:00:00 2001 From: sunyuchao Date: Fri, 14 May 2021 17:44:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/ProjectSatisfactionStatisticsEntity.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/entity/ProjectSatisfactionStatisticsEntity.java b/epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/entity/ProjectSatisfactionStatisticsEntity.java index 319982e358..3174baa747 100644 --- a/epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/entity/ProjectSatisfactionStatisticsEntity.java +++ b/epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/entity/ProjectSatisfactionStatisticsEntity.java @@ -72,11 +72,6 @@ public class ProjectSatisfactionStatisticsEntity extends BaseEpmetEntity { @TableField(fill = FieldFill.INSERT) private String customerId; - /** - * 应评价人数【等于实际表决人数】 - */ - private Integer shouldEvaluateCount; - public ProjectSatisfactionStatisticsEntity() { this.goodCount = NumConstant.ZERO; this.perfectCount = NumConstant.ZERO; @@ -84,10 +79,4 @@ public class ProjectSatisfactionStatisticsEntity extends BaseEpmetEntity { this.shouldEvaluateCount = NumConstant.ZERO; } - public ProjectSatisfactionStatisticsEntity() { - this.goodCount = NumConstant.ZERO; - this.perfectCount = NumConstant.ZERO; - this.badCount = NumConstant.ZERO; - this.shouldEvaluateCount = NumConstant.ZERO; - } }