From dc84bb47fbc3ffc22a6ba36d30a2852432c2d01d Mon Sep 17 00:00:00 2001 From: ZY <zc857179121@qq.com> Date: 星期六, 10 五月 2025 09:23:50 +0800 Subject: [PATCH] 读取第二数据源 --- src/main/java/com/zy/nc/entity/NccSaleXsfhmxWms.java | 20 ++++++++++++++++++-- 1 files changed, 18 insertions(+), 2 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..e592836 100644 --- a/src/main/java/com/zy/nc/entity/NccSaleXsfhmxWms.java +++ b/src/main/java/com/zy/nc/entity/NccSaleXsfhmxWms.java @@ -177,7 +177,7 @@ /** * */ - private BigDecimal nastnum; + private Double nastnum; /** * @@ -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