From aa2d0845d83b95135d0c86a2cc62f66947ecd6f9 Mon Sep 17 00:00:00 2001 From: zhang <zc857179121@qq.com> Date: 星期三, 06 八月 2025 13:39:13 +0800 Subject: [PATCH] 1 --- src/main/java/com/zy/nc/entity/NccOrgCorpWms.java | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/zy/nc/entity/NccOrgCorpWms.java b/src/main/java/com/zy/nc/entity/NccOrgCorpWms.java index 31f117f..871aa55 100644 --- a/src/main/java/com/zy/nc/entity/NccOrgCorpWms.java +++ b/src/main/java/com/zy/nc/entity/NccOrgCorpWms.java @@ -27,6 +27,15 @@ */ private String shortname; + /** + * + */ + private Integer wmsFlag; + /** + * + */ + private String wmsMemo; + @Override public boolean equals(Object that) { if (this == that) { @@ -41,7 +50,8 @@ NccOrgCorpWms other = (NccOrgCorpWms) that; return (this.getCode() == null ? other.getCode() == null : this.getCode().equals(other.getCode())) && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName())) - && (this.getShortname() == null ? other.getShortname() == null : this.getShortname().equals(other.getShortname())); + && (this.getShortname() == null ? other.getShortname() == null : this.getShortname().equals(other.getShortname())) + && (this.getWmsFlag() == null ? other.getWmsFlag() == null : this.getWmsFlag().equals(other.getWmsFlag())); } @Override @@ -51,6 +61,7 @@ result = prime * result + ((getCode() == null) ? 0 : getCode().hashCode()); result = prime * result + ((getName() == null) ? 0 : getName().hashCode()); result = prime * result + ((getShortname() == null) ? 0 : getShortname().hashCode()); + result = prime * result + ((getWmsFlag() == null) ? 0 : getWmsFlag().hashCode()); return result; } @@ -63,6 +74,7 @@ sb.append(", code=").append(code); sb.append(", name=").append(name); sb.append(", shortname=").append(shortname); + sb.append(", wmsFlag=").append(wmsFlag); sb.append("]"); return sb.toString(); } -- Gitblit v1.9.1