// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package com.flow.pojo; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; @TableName("invoicesjilu") public class Invoicesjilu { @TableId( type = IdType.AUTO ) private Integer id; private String sqdate; private String fptt; private String fpmoney; private String fpxz; private String fpstate; private String danhao; private String company; public Invoicesjilu(Integer id, String sqdate, String fptt, String fpmoney, String fpxz, String fpstate, String danhao, String company) { this.id = id; this.sqdate = sqdate; this.fptt = fptt; this.fpmoney = fpmoney; this.fpxz = fpxz; this.fpstate = fpstate; this.danhao = danhao; this.company = company; } public Invoicesjilu() { } public boolean equals(Object o) { if (o == this) { return true; } else if (!(o instanceof Invoicesjilu)) { return false; } else { Invoicesjilu other = (Invoicesjilu)o; if (!other.canEqual(this)) { return false; } else { label107: { Object this$id = this.getId(); Object other$id = other.getId(); if (this$id == null) { if (other$id == null) { break label107; } } else if (this$id.equals(other$id)) { break label107; } return false; } Object this$sqdate = this.getSqdate(); Object other$sqdate = other.getSqdate(); if (this$sqdate == null) { if (other$sqdate != null) { return false; } } else if (!this$sqdate.equals(other$sqdate)) { return false; } Object this$fptt = this.getFptt(); Object other$fptt = other.getFptt(); if (this$fptt == null) { if (other$fptt != null) { return false; } } else if (!this$fptt.equals(other$fptt)) { return false; } label86: { Object this$fpmoney = this.getFpmoney(); Object other$fpmoney = other.getFpmoney(); if (this$fpmoney == null) { if (other$fpmoney == null) { break label86; } } else if (this$fpmoney.equals(other$fpmoney)) { break label86; } return false; } label79: { Object this$fpxz = this.getFpxz(); Object other$fpxz = other.getFpxz(); if (this$fpxz == null) { if (other$fpxz == null) { break label79; } } else if (this$fpxz.equals(other$fpxz)) { break label79; } return false; } label72: { Object this$fpstate = this.getFpstate(); Object other$fpstate = other.getFpstate(); if (this$fpstate == null) { if (other$fpstate == null) { break label72; } } else if (this$fpstate.equals(other$fpstate)) { break label72; } return false; } Object this$danhao = this.getDanhao(); Object other$danhao = other.getDanhao(); if (this$danhao == null) { if (other$danhao != null) { return false; } } else if (!this$danhao.equals(other$danhao)) { 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 Invoicesjilu; } public int hashCode() { int result = 1; Object $id = this.getId(); result = result * 59 + ($id == null ? 43 : $id.hashCode()); Object $sqdate = this.getSqdate(); result = result * 59 + ($sqdate == null ? 43 : $sqdate.hashCode()); Object $fptt = this.getFptt(); result = result * 59 + ($fptt == null ? 43 : $fptt.hashCode()); Object $fpmoney = this.getFpmoney(); result = result * 59 + ($fpmoney == null ? 43 : $fpmoney.hashCode()); Object $fpxz = this.getFpxz(); result = result * 59 + ($fpxz == null ? 43 : $fpxz.hashCode()); Object $fpstate = this.getFpstate(); result = result * 59 + ($fpstate == null ? 43 : $fpstate.hashCode()); Object $danhao = this.getDanhao(); result = result * 59 + ($danhao == null ? 43 : $danhao.hashCode()); Object $company = this.getCompany(); result = result * 59 + ($company == null ? 43 : $company.hashCode()); return result; } public String toString() { return "Invoicesjilu(id=" + this.getId() + ", sqdate=" + this.getSqdate() + ", fptt=" + this.getFptt() + ", fpmoney=" + this.getFpmoney() + ", fpxz=" + this.getFpxz() + ", fpstate=" + this.getFpstate() + ", danhao=" + this.getDanhao() + ", company=" + this.getCompany() + ")"; } public void setId(Integer id) { this.id = id; } public void setSqdate(String sqdate) { this.sqdate = sqdate; } public void setFptt(String fptt) { this.fptt = fptt; } public void setFpmoney(String fpmoney) { this.fpmoney = fpmoney; } public void setFpxz(String fpxz) { this.fpxz = fpxz; } public void setFpstate(String fpstate) { this.fpstate = fpstate; } public void setDanhao(String danhao) { this.danhao = danhao; } public void setCompany(String company) { this.company = company; } public Integer getId() { return this.id; } public String getSqdate() { return this.sqdate; } public String getFptt() { return this.fptt; } public String getFpmoney() { return this.fpmoney; } public String getFpxz() { return this.fpxz; } public String getFpstate() { return this.fpstate; } public String getDanhao() { return this.danhao; } public String getCompany() { return this.company; } }