Commit 6fe0c8f071bdc17d75de97f79d4bfc7642ffcaa0

Authored by liquanyu
1 parent 1c0e573f74

update code

Showing 1 changed file with 13 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/RiskReportResult.java View file @ 6fe0c8f
... ... @@ -95,5 +95,18 @@
95 95 this.percent = percent;
96 96 }
97 97  
  98 + @Override
  99 + public String toString() {
  100 + return "RiskReportResult{" +
  101 + "highRiskId='" + highRiskId + '\'' +
  102 + ", highLevel=" + highLevel +
  103 + ", highRisk='" + highRisk + '\'' +
  104 + ", riskCount=" + riskCount +
  105 + ", percent='" + percent + '\'' +
  106 + ", pid='" + pid + '\'' +
  107 + ", level=" + level +
  108 + ", riskReportResults=" + riskReportResults +
  109 + '}';
  110 + }
98 111 }