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/NccJcQilibcBarcodeflowWms.java | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/zy/nc/entity/NccJcQilibcBarcodeflowWms.java b/src/main/java/com/zy/nc/entity/NccJcQilibcBarcodeflowWms.java
index db0e8ad..ce6e401 100644
--- a/src/main/java/com/zy/nc/entity/NccJcQilibcBarcodeflowWms.java
+++ b/src/main/java/com/zy/nc/entity/NccJcQilibcBarcodeflowWms.java
@@ -64,6 +64,11 @@
*/
private BigDecimal nastnum;
+ /**
+ *
+ */
+ private Integer wmsFlag;
+
@Override
public boolean equals(Object that) {
if (this == that) {
@@ -85,7 +90,8 @@
&& (this.getPkStordoc() == null ? other.getPkStordoc() == null : this.getPkStordoc().equals(other.getPkStordoc()))
&& (this.getMemo() == null ? other.getMemo() == null : this.getMemo().equals(other.getMemo()))
&& (this.getVbillno() == null ? other.getVbillno() == null : this.getVbillno().equals(other.getVbillno()))
- && (this.getNastnum() == null ? other.getNastnum() == null : this.getNastnum().equals(other.getNastnum()));
+ && (this.getNastnum() == null ? other.getNastnum() == null : this.getNastnum().equals(other.getNastnum()))
+ && (this.getWmsFlag() == null ? other.getWmsFlag() == null : this.getWmsFlag().equals(other.getWmsFlag()));
}
@Override
@@ -102,6 +108,7 @@
result = prime * result + ((getMemo() == null) ? 0 : getMemo().hashCode());
result = prime * result + ((getVbillno() == null) ? 0 : getVbillno().hashCode());
result = prime * result + ((getNastnum() == null) ? 0 : getNastnum().hashCode());
+ result = prime * result + ((getWmsFlag() == null) ? 0 : getWmsFlag().hashCode());
return result;
}
@@ -121,6 +128,7 @@
sb.append(", memo=").append(memo);
sb.append(", vbillno=").append(vbillno);
sb.append(", nastnum=").append(nastnum);
+ sb.append(", wmsFlag=").append(wmsFlag);
sb.append("]");
return sb.toString();
}
--
Gitblit v1.9.1