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/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