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/NccSaleXsfhmxWms.java | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/zy/nc/entity/NccSaleXsfhmxWms.java b/src/main/java/com/zy/nc/entity/NccSaleXsfhmxWms.java index 08f4048..612aa6c 100644 --- a/src/main/java/com/zy/nc/entity/NccSaleXsfhmxWms.java +++ b/src/main/java/com/zy/nc/entity/NccSaleXsfhmxWms.java @@ -374,6 +374,16 @@ */ private String kczzmc; + /** + * + */ + private String vnote; + + /** + * + */ + private Integer wmsFlag; + @Override public boolean equals(Object that) { if (this == that) { @@ -457,7 +467,9 @@ && (this.getShsf() == null ? other.getShsf() == null : this.getShsf().equals(other.getShsf())) && (this.getGssf() == null ? other.getGssf() == null : this.getGssf().equals(other.getGssf())) && (this.getKczzbm() == null ? other.getKczzbm() == null : this.getKczzbm().equals(other.getKczzbm())) - && (this.getKczzmc() == null ? other.getKczzmc() == null : this.getKczzmc().equals(other.getKczzmc())); + && (this.getKczzmc() == null ? other.getKczzmc() == null : this.getKczzmc().equals(other.getKczzmc())) + && (this.getVnote() == null ? other.getVnote() == null : this.getVnote().equals(other.getVnote())) + && (this.getWmsFlag() == null ? other.getWmsFlag() == null : this.getWmsFlag().equals(other.getWmsFlag())); } @Override @@ -536,6 +548,8 @@ result = prime * result + ((getGssf() == null) ? 0 : getGssf().hashCode()); result = prime * result + ((getKczzbm() == null) ? 0 : getKczzbm().hashCode()); result = prime * result + ((getKczzmc() == null) ? 0 : getKczzmc().hashCode()); + result = prime * result + ((getVnote() == null) ? 0 : getVnote().hashCode()); + result = prime * result + ((getWmsFlag() == null) ? 0 : getWmsFlag().hashCode()); return result; } @@ -617,6 +631,8 @@ sb.append(", gssf=").append(gssf); sb.append(", kczzbm=").append(kczzbm); sb.append(", kczzmc=").append(kczzmc); + sb.append(", vnote=").append(vnote); + sb.append(", wmsFlag=").append(wmsFlag); sb.append("]"); return sb.toString(); } -- Gitblit v1.9.1