From b67bafd95dc17136ac0eab068ba51cd55e1669f3 Mon Sep 17 00:00:00 2001 From: Junjie <xjj@123> Date: 星期五, 13 六月 2025 20:08:12 +0800 Subject: [PATCH] # --- 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