From ae435b36b998f81fbbecb028d654aec814ee3257 Mon Sep 17 00:00:00 2001
From: ZY <zc857179121@qq.com>
Date: 星期四, 08 五月 2025 09:57:19 +0800
Subject: [PATCH] 双数据源

---
 src/main/java/com/zy/nc/entity/NccBdCustomerWms.java |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/zy/nc/entity/NccBdCustomerWms.java b/src/main/java/com/zy/nc/entity/NccBdCustomerWms.java
index 31fae96..7eeca27 100644
--- a/src/main/java/com/zy/nc/entity/NccBdCustomerWms.java
+++ b/src/main/java/com/zy/nc/entity/NccBdCustomerWms.java
@@ -59,6 +59,11 @@
      */
     private BigDecimal nlimitmny;
 
+    /**
+     * 
+     */
+    private Integer wmsFlag;
+
     @Override
     public boolean equals(Object that) {
         if (this == that) {
@@ -79,7 +84,8 @@
             && (this.getKhlx() == null ? other.getKhlx() == null : this.getKhlx().equals(other.getKhlx()))
             && (this.getTel1() == null ? other.getTel1() == null : this.getTel1().equals(other.getTel1()))
             && (this.getLegalbody() == null ? other.getLegalbody() == null : this.getLegalbody().equals(other.getLegalbody()))
-            && (this.getNlimitmny() == null ? other.getNlimitmny() == null : this.getNlimitmny().equals(other.getNlimitmny()));
+            && (this.getNlimitmny() == null ? other.getNlimitmny() == null : this.getNlimitmny().equals(other.getNlimitmny()))
+            && (this.getWmsFlag() == null ? other.getWmsFlag() == null : this.getWmsFlag().equals(other.getWmsFlag()));
     }
 
     @Override
@@ -95,6 +101,7 @@
         result = prime * result + ((getTel1() == null) ? 0 : getTel1().hashCode());
         result = prime * result + ((getLegalbody() == null) ? 0 : getLegalbody().hashCode());
         result = prime * result + ((getNlimitmny() == null) ? 0 : getNlimitmny().hashCode());
+        result = prime * result + ((getWmsFlag() == null) ? 0 : getWmsFlag().hashCode());
         return result;
     }
 
@@ -113,6 +120,7 @@
         sb.append(", tel1=").append(tel1);
         sb.append(", legalbody=").append(legalbody);
         sb.append(", nlimitmny=").append(nlimitmny);
+        sb.append(", wmsFlag=").append(wmsFlag);
         sb.append("]");
         return sb.toString();
     }

--
Gitblit v1.9.1