From 40606191d07e8f0c5dffdc8cb92d42c381d40df6 Mon Sep 17 00:00:00 2001 From: zhang <zc857179121@qq.com> Date: 星期六, 17 五月 2025 10:30:39 +0800 Subject: [PATCH] 接口编写 --- src/main/java/com/zy/nc/entity/NccScZkmxbWms.java | 152 ++++++++++++++++++++++++++++++++------------------ 1 files changed, 98 insertions(+), 54 deletions(-) diff --git a/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java b/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java index a43b5f6..a1f53bd 100644 --- a/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java +++ b/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java @@ -15,270 +15,299 @@ @Data public class NccScZkmxbWms { /** - * + * */ @TableId private String cspecialbid; /** - * + * */ private String vbillcode; /** - * + * */ private String dmakedate; /** - * + * */ private Date scdmakedate; /** - * + * */ private String dbilldate; /** - * + * */ private String taudittime; /** - * + * */ private String zzbm; /** - * + * */ private String zzmc; /** - * + * */ private String ckzzbm; /** - * + * */ private String ckzzmc; /** - * + * */ private String ckssbcode; /** - * + * */ private String cksssyb; /** - * + * */ private String ckckbm; /** - * + * */ private String ckckmc; /** - * + * */ private String ckbmbm; /** - * + * */ private String ckbmmc; /** - * + * */ private String rkzzbm; /** - * + * */ private String rkzzmc; /** - * + * */ private String rkssbcode; /** - * + * */ private String rksssyb; /** - * + * */ private String rkckbm; /** - * + * */ private String rkckmc; /** - * + * */ private String rkbmbm; /** - * + * */ private String rkbmmc; /** - * + * */ private Long djzt; /** - * + * */ private String zklx; /** - * + * */ private String wlbm; /** - * + * */ private String wlmc; /** - * + * */ private String wlgg; /** - * + * */ private String wlxh; /** - * + * */ private String wljc; /** - * + * */ private String jbflbm; /** - * + * */ private String jbflmc; /** - * + * */ private String sjflbm; /** - * + * */ private String sjflmc; /** - * + * */ private String zsjflbm; /** - * + * */ private String zsjflmc; /** - * + * */ private String zdw; /** - * + * */ private String fdw; /** - * + * */ private String kczt; /** - * + * */ private String vbatchcode; /** - * + * */ private String vdef1; /** - * + * */ private String vdef2; /** - * + * */ private String vdef3; /** - * + * */ private String khbm; /** - * + * */ private String khmc; /** - * + * */ private String khjc; /** - * + * */ private BigDecimal yzzsl; /** - * + * */ private BigDecimal yzfsl; /** - * + * */ private BigDecimal ljckzsl; /** - * + * */ private BigDecimal ljrkzsl; /** - * + * */ private Integer dr; /** - * + * */ private String ts; + + /** + * + */ + private Integer wmsFlag; + + /** + * + */ + private BigDecimal yingzsl; + + /** + * + */ + private BigDecimal yingzzsl; + + /** + * + */ + private Integer bdr; + + /** + * + */ + private String bts; + /** + * + */ + private String wmsMemo; @Override public boolean equals(Object that) { @@ -344,7 +373,12 @@ && (this.getLjckzsl() == null ? other.getLjckzsl() == null : this.getLjckzsl().equals(other.getLjckzsl())) && (this.getLjrkzsl() == null ? other.getLjrkzsl() == null : this.getLjrkzsl().equals(other.getLjrkzsl())) && (this.getDr() == null ? other.getDr() == null : this.getDr().equals(other.getDr())) - && (this.getTs() == null ? other.getTs() == null : this.getTs().equals(other.getTs())); + && (this.getTs() == null ? other.getTs() == null : this.getTs().equals(other.getTs())) + && (this.getWmsFlag() == null ? other.getWmsFlag() == null : this.getWmsFlag().equals(other.getWmsFlag())) + && (this.getYingzsl() == null ? other.getYingzsl() == null : this.getYingzsl().equals(other.getYingzsl())) + && (this.getYingzzsl() == null ? other.getYingzzsl() == null : this.getYingzzsl().equals(other.getYingzzsl())) + && (this.getBdr() == null ? other.getBdr() == null : this.getBdr().equals(other.getBdr())) + && (this.getBts() == null ? other.getBts() == null : this.getBts().equals(other.getBts())); } @Override @@ -404,6 +438,11 @@ result = prime * result + ((getLjrkzsl() == null) ? 0 : getLjrkzsl().hashCode()); result = prime * result + ((getDr() == null) ? 0 : getDr().hashCode()); result = prime * result + ((getTs() == null) ? 0 : getTs().hashCode()); + result = prime * result + ((getWmsFlag() == null) ? 0 : getWmsFlag().hashCode()); + result = prime * result + ((getYingzsl() == null) ? 0 : getYingzsl().hashCode()); + result = prime * result + ((getYingzzsl() == null) ? 0 : getYingzzsl().hashCode()); + result = prime * result + ((getBdr() == null) ? 0 : getBdr().hashCode()); + result = prime * result + ((getBts() == null) ? 0 : getBts().hashCode()); return result; } @@ -466,6 +505,11 @@ sb.append(", ljrkzsl=").append(ljrkzsl); sb.append(", dr=").append(dr); sb.append(", ts=").append(ts); + sb.append(", wmsFlag=").append(wmsFlag); + sb.append(", yingzsl=").append(yingzsl); + sb.append(", yingzzsl=").append(yingzzsl); + sb.append(", bdr=").append(bdr); + sb.append(", bts=").append(bts); sb.append("]"); return sb.toString(); } -- Gitblit v1.9.1