From b9b58b9ef261cb290d93465f88a2cbd814b576f0 Mon Sep 17 00:00:00 2001 From: fei.wang <wf18701153496@163.com> Date: 星期一, 13 五月 2024 17:51:44 +0800 Subject: [PATCH] 更改 --- src/main/java/com/flow/pojo/Bangzhu.java | 213 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 213 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/flow/pojo/Bangzhu.java b/src/main/java/com/flow/pojo/Bangzhu.java new file mode 100644 index 0000000..f0ef1f9 --- /dev/null +++ b/src/main/java/com/flow/pojo/Bangzhu.java @@ -0,0 +1,213 @@ +// +// Source code recreated from a .class file by IntelliJ IDEA +// (powered by FernFlower decompiler) +// + +package com.flow.pojo; + +import com.baomidou.mybatisplus.annotation.TableName; + +@TableName("bangzhu") +public class Bangzhu { + private Long num; + private String fkwt; + private String fkdata; + private String clff; + private String sfwj; + private String clsj; + private String Company; + + public Bangzhu(Long num, String fkwt, String fkdata, String clff, String sfwj, String clsj, String Company) { + this.num = num; + this.fkwt = fkwt; + this.fkdata = fkdata; + this.clff = clff; + this.sfwj = sfwj; + this.clsj = clsj; + this.Company = Company; + } + + public Bangzhu() { + } + + public boolean equals(Object o) { + if (o == this) { + return true; + } else if (!(o instanceof Bangzhu)) { + return false; + } else { + Bangzhu other = (Bangzhu)o; + if (!other.canEqual(this)) { + return false; + } else { + label95: { + Object this$num = this.getNum(); + Object other$num = other.getNum(); + if (this$num == null) { + if (other$num == null) { + break label95; + } + } else if (this$num.equals(other$num)) { + break label95; + } + + return false; + } + + Object this$fkwt = this.getFkwt(); + Object other$fkwt = other.getFkwt(); + if (this$fkwt == null) { + if (other$fkwt != null) { + return false; + } + } else if (!this$fkwt.equals(other$fkwt)) { + return false; + } + + Object this$fkdata = this.getFkdata(); + Object other$fkdata = other.getFkdata(); + if (this$fkdata == null) { + if (other$fkdata != null) { + return false; + } + } else if (!this$fkdata.equals(other$fkdata)) { + return false; + } + + label74: { + Object this$clff = this.getClff(); + Object other$clff = other.getClff(); + if (this$clff == null) { + if (other$clff == null) { + break label74; + } + } else if (this$clff.equals(other$clff)) { + break label74; + } + + return false; + } + + label67: { + Object this$sfwj = this.getSfwj(); + Object other$sfwj = other.getSfwj(); + if (this$sfwj == null) { + if (other$sfwj == null) { + break label67; + } + } else if (this$sfwj.equals(other$sfwj)) { + break label67; + } + + return false; + } + + Object this$clsj = this.getClsj(); + Object other$clsj = other.getClsj(); + if (this$clsj == null) { + if (other$clsj != null) { + return false; + } + } else if (!this$clsj.equals(other$clsj)) { + return false; + } + + Object this$Company = this.getCompany(); + Object other$Company = other.getCompany(); + if (this$Company == null) { + if (other$Company != null) { + return false; + } + } else if (!this$Company.equals(other$Company)) { + return false; + } + + return true; + } + } + } + + protected boolean canEqual(Object other) { + return other instanceof Bangzhu; + } + + public int hashCode() { + + int result = 1; + Object $num = this.getNum(); + result = result * 59 + ($num == null ? 43 : $num.hashCode()); + Object $fkwt = this.getFkwt(); + result = result * 59 + ($fkwt == null ? 43 : $fkwt.hashCode()); + Object $fkdata = this.getFkdata(); + result = result * 59 + ($fkdata == null ? 43 : $fkdata.hashCode()); + Object $clff = this.getClff(); + result = result * 59 + ($clff == null ? 43 : $clff.hashCode()); + Object $sfwj = this.getSfwj(); + result = result * 59 + ($sfwj == null ? 43 : $sfwj.hashCode()); + Object $clsj = this.getClsj(); + result = result * 59 + ($clsj == null ? 43 : $clsj.hashCode()); + Object $Company = this.getCompany(); + result = result * 59 + ($Company == null ? 43 : $Company.hashCode()); + return result; + } + + public String toString() { + return "Bangzhu(num=" + this.getNum() + ", fkwt=" + this.getFkwt() + ", fkdata=" + this.getFkdata() + ", clff=" + this.getClff() + ", sfwj=" + this.getSfwj() + ", clsj=" + this.getClsj() + ", Company=" + this.getCompany() + ")"; + } + + public void setNum(Long num) { + this.num = num; + } + + public void setFkwt(String fkwt) { + this.fkwt = fkwt; + } + + public void setFkdata(String fkdata) { + this.fkdata = fkdata; + } + + public void setClff(String clff) { + this.clff = clff; + } + + public void setSfwj(String sfwj) { + this.sfwj = sfwj; + } + + public void setClsj(String clsj) { + this.clsj = clsj; + } + + public void setCompany(String Company) { + this.Company = Company; + } + + public Long getNum() { + return this.num; + } + + public String getFkwt() { + return this.fkwt; + } + + public String getFkdata() { + return this.fkdata; + } + + public String getClff() { + return this.clff; + } + + public String getSfwj() { + return this.sfwj; + } + + public String getClsj() { + return this.clsj; + } + + public String getCompany() { + return this.Company; + } +} -- Gitblit v1.9.3