From 871d4095b07cedacb7fbef4c38d64982f539c404 Mon Sep 17 00:00:00 2001 From: fei.wang <wf18701153496@163.com> Date: 星期四, 09 五月 2024 15:40:15 +0800 Subject: [PATCH] 测试提交 --- src/main/java/com/flow/pojo/Chongzhi.java | 249 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 249 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/flow/pojo/Chongzhi.java b/src/main/java/com/flow/pojo/Chongzhi.java new file mode 100644 index 0000000..12f925f --- /dev/null +++ b/src/main/java/com/flow/pojo/Chongzhi.java @@ -0,0 +1,249 @@ +// +// 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("chongzhi") +public class Chongzhi { + private Long num; + private String czcard; + private String czmoney; + private String jynum; + private String czdate; + private String company; + private String kaimoney; + private String status; + + private String none; + + public Chongzhi(Long num, String czcard, String czmoney, String jynum, String czdate, String company, String kaimoney, String status) { + this.num = num; + this.czcard = czcard; + this.czmoney = czmoney; + this.jynum = jynum; + this.czdate = czdate; + this.company = company; + this.kaimoney = kaimoney; + this.status = status; + } + + public Chongzhi() { + } + + public boolean equals(Object o) { + if (o == this) { + return true; + } else if (!(o instanceof Chongzhi)) { + return false; + } else { + Chongzhi other = (Chongzhi)o; + if (!other.canEqual(this)) { + return false; + } else { + label107: { + Object this$num = this.getNum(); + Object other$num = other.getNum(); + if (this$num == null) { + if (other$num == null) { + break label107; + } + } else if (this$num.equals(other$num)) { + break label107; + } + + return false; + } + + Object this$czcard = this.getCzcard(); + Object other$czcard = other.getCzcard(); + if (this$czcard == null) { + if (other$czcard != null) { + return false; + } + } else if (!this$czcard.equals(other$czcard)) { + return false; + } + + Object this$czmoney = this.getCzmoney(); + Object other$czmoney = other.getCzmoney(); + if (this$czmoney == null) { + if (other$czmoney != null) { + return false; + } + } else if (!this$czmoney.equals(other$czmoney)) { + return false; + } + + label86: { + Object this$jynum = this.getJynum(); + Object other$jynum = other.getJynum(); + if (this$jynum == null) { + if (other$jynum == null) { + break label86; + } + } else if (this$jynum.equals(other$jynum)) { + break label86; + } + + return false; + } + + label79: { + Object this$czdate = this.getCzdate(); + Object other$czdate = other.getCzdate(); + if (this$czdate == null) { + if (other$czdate == null) { + break label79; + } + } else if (this$czdate.equals(other$czdate)) { + break label79; + } + + return false; + } + + label72: { + Object this$company = this.getCompany(); + Object other$company = other.getCompany(); + if (this$company == null) { + if (other$company == null) { + break label72; + } + } else if (this$company.equals(other$company)) { + break label72; + } + + return false; + } + + Object this$kaimoney = this.getKaimoney(); + Object other$kaimoney = other.getKaimoney(); + if (this$kaimoney == null) { + if (other$kaimoney != null) { + return false; + } + } else if (!this$kaimoney.equals(other$kaimoney)) { + return false; + } + + Object this$status = this.getStatus(); + Object other$status = other.getStatus(); + if (this$status == null) { + if (other$status != null) { + return false; + } + } else if (!this$status.equals(other$status)) { + return false; + } + + return true; + } + } + } + + protected boolean canEqual(Object other) { + return other instanceof Chongzhi; + } + + public int hashCode() { + + int result = 1; + Object $num = this.getNum(); + result = result * 59 + ($num == null ? 43 : $num.hashCode()); + Object $czcard = this.getCzcard(); + result = result * 59 + ($czcard == null ? 43 : $czcard.hashCode()); + Object $czmoney = this.getCzmoney(); + result = result * 59 + ($czmoney == null ? 43 : $czmoney.hashCode()); + Object $jynum = this.getJynum(); + result = result * 59 + ($jynum == null ? 43 : $jynum.hashCode()); + Object $czdate = this.getCzdate(); + result = result * 59 + ($czdate == null ? 43 : $czdate.hashCode()); + Object $company = this.getCompany(); + result = result * 59 + ($company == null ? 43 : $company.hashCode()); + Object $kaimoney = this.getKaimoney(); + result = result * 59 + ($kaimoney == null ? 43 : $kaimoney.hashCode()); + Object $status = this.getStatus(); + result = result * 59 + ($status == null ? 43 : $status.hashCode()); + return result; + } + + public String toString() { + return "Chongzhi(num=" + this.getNum() + ", czcard=" + this.getCzcard() + ", czmoney=" + this.getCzmoney() + ", jynum=" + this.getJynum() + ", czdate=" + this.getCzdate() + ", company=" + this.getCompany() + ", kaimoney=" + this.getKaimoney() + ", status=" + this.getStatus() + ")"; + } + + public void setNum(Long num) { + this.num = num; + } + + public void setCzcard(String czcard) { + this.czcard = czcard; + } + + public void setCzmoney(String czmoney) { + this.czmoney = czmoney; + } + + public void setJynum(String jynum) { + this.jynum = jynum; + } + + public void setCzdate(String czdate) { + this.czdate = czdate; + } + + public void setCompany(String company) { + this.company = company; + } + + public void setKaimoney(String kaimoney) { + this.kaimoney = kaimoney; + } + + public void setStatus(String status) { + this.status = status; + } + + public Long getNum() { + return this.num; + } + + public String getCzcard() { + return this.czcard; + } + + public String getCzmoney() { + return this.czmoney; + } + + public String getJynum() { + return this.jynum; + } + + public String getCzdate() { + return this.czdate; + } + + public String getCompany() { + return this.company; + } + + public String getKaimoney() { + return this.kaimoney; + } + + public String getStatus() { + return this.status; + } + + public String getNone() { + return none; + } + + public void setNone(String none) { + this.none = none; + } +} -- Gitblit v1.9.3