From 60d996294b436d557a86817ab5db50a8814da5fe Mon Sep 17 00:00:00 2001
From: jyy <935090232@qq.com>
Date: Tue, 16 Mar 2021 17:58:01 +0800
Subject: [PATCH] 新增配置查询3

---
 zq-erp/src/main/java/com/matrix/core/pojo/VerificationResult.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/zq-erp/src/main/java/com/matrix/core/pojo/VerificationResult.java b/zq-erp/src/main/java/com/matrix/core/pojo/VerificationResult.java
index a1c4c70..d4bb932 100644
--- a/zq-erp/src/main/java/com/matrix/core/pojo/VerificationResult.java
+++ b/zq-erp/src/main/java/com/matrix/core/pojo/VerificationResult.java
@@ -8,7 +8,7 @@
 @Data
 public class VerificationResult {
 
-    private boolean result;
+    private boolean judgeResult;
 
     private String  msg;
 
@@ -18,24 +18,24 @@
 
     }
 
-    public static VerificationResult buildVerificationResult(boolean result){
+    public static VerificationResult buildVerificationResult(boolean judgeResult){
         VerificationResult obj=new VerificationResult();
-        obj.result=result;
+        obj.judgeResult =judgeResult;
         return obj ;
     }
 
 
-    public static VerificationResult buildVerificationResult(boolean result,String msg){
+    public static VerificationResult buildVerificationResult(boolean judgeResult,String msg){
         VerificationResult obj=new VerificationResult();
-        obj.result=result;
+        obj.judgeResult =judgeResult;
         obj.msg=msg;
         return obj ;
     }
 
 
-    public static VerificationResult buildVerificationResult(boolean result,Object  info){
+    public static VerificationResult buildVerificationResult(boolean judgeResult,Object  info){
         VerificationResult obj=new VerificationResult();
-        obj.result=result;
+        obj.judgeResult =judgeResult;
         obj.info=info;
         return obj ;
     }

--
Gitblit v1.9.1