From fcd35daf35247eb3c0b087f2042de1fd9013b5b6 Mon Sep 17 00:00:00 2001 From: zhang <zc857179121@qq.com> Date: 星期三, 06 八月 2025 14:27:50 +0800 Subject: [PATCH] 1 --- src/main/java/com/zy/nc/entity/NccScZkmxbWms.java | 22 ++++++++++++++++++---- 1 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java b/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java index 3576644..d5d8e5d 100644 --- a/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java +++ b/src/main/java/com/zy/nc/entity/NccScZkmxbWms.java @@ -1,10 +1,10 @@ package com.zy.nc.entity; -import com.baomidou.mybatisplus.annotations.TableField; -import com.baomidou.mybatisplus.annotations.TableId; -import com.baomidou.mybatisplus.annotations.TableName; import java.math.BigDecimal; import java.util.Date; + +import com.baomidou.mybatisplus.annotations.TableId; +import com.baomidou.mybatisplus.annotations.TableName; import lombok.Data; /** @@ -19,6 +19,10 @@ */ @TableId private String cspecialbid; + + private String cspecialhid; + + private String zklxbm; /** * @@ -305,6 +309,13 @@ */ private String bts; + /** + * + */ + private String wmsMemo; + + + @Override public boolean equals(Object that) { if (this == that) { @@ -374,7 +385,8 @@ && (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())); + && (this.getBts() == null ? other.getBts() == null : this.getBts().equals(other.getBts())) + && (this.getWmsMemo() == null ? other.getWmsMemo() == null : this.getWmsMemo().equals(other.getWmsMemo())); } @Override @@ -439,6 +451,7 @@ result = prime * result + ((getYingzzsl() == null) ? 0 : getYingzzsl().hashCode()); result = prime * result + ((getBdr() == null) ? 0 : getBdr().hashCode()); result = prime * result + ((getBts() == null) ? 0 : getBts().hashCode()); + result = prime * result + ((getWmsMemo() == null) ? 0 : getWmsMemo().hashCode()); return result; } @@ -506,6 +519,7 @@ sb.append(", yingzzsl=").append(yingzzsl); sb.append(", bdr=").append(bdr); sb.append(", bts=").append(bts); + sb.append(", wmsMemo=").append(wmsMemo); sb.append("]"); return sb.toString(); } -- Gitblit v1.9.1