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/Loginjilu.java | 213 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 213 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/flow/pojo/Loginjilu.java b/src/main/java/com/flow/pojo/Loginjilu.java new file mode 100644 index 0000000..0863d6d --- /dev/null +++ b/src/main/java/com/flow/pojo/Loginjilu.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("loginjilu") +public class Loginjilu { + private Long num; + private String logincompany; + private String loginphone; + private String ip; + private String logindate; + private String loginoutdate; + private String none; + + public Loginjilu(Long num, String logincompany, String loginphone, String ip, String logindate, String loginoutdate, String none) { + this.num = num; + this.logincompany = logincompany; + this.loginphone = loginphone; + this.ip = ip; + this.logindate = logindate; + this.loginoutdate = loginoutdate; + this.none = none; + } + + public Loginjilu() { + } + + public boolean equals(Object o) { + if (o == this) { + return true; + } else if (!(o instanceof Loginjilu)) { + return false; + } else { + Loginjilu other = (Loginjilu)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$logincompany = this.getLogincompany(); + Object other$logincompany = other.getLogincompany(); + if (this$logincompany == null) { + if (other$logincompany != null) { + return false; + } + } else if (!this$logincompany.equals(other$logincompany)) { + return false; + } + + Object this$loginphone = this.getLoginphone(); + Object other$loginphone = other.getLoginphone(); + if (this$loginphone == null) { + if (other$loginphone != null) { + return false; + } + } else if (!this$loginphone.equals(other$loginphone)) { + return false; + } + + label74: { + Object this$ip = this.getIp(); + Object other$ip = other.getIp(); + if (this$ip == null) { + if (other$ip == null) { + break label74; + } + } else if (this$ip.equals(other$ip)) { + break label74; + } + + return false; + } + + label67: { + Object this$logindate = this.getLogindate(); + Object other$logindate = other.getLogindate(); + if (this$logindate == null) { + if (other$logindate == null) { + break label67; + } + } else if (this$logindate.equals(other$logindate)) { + break label67; + } + + return false; + } + + Object this$loginoutdate = this.getLoginoutdate(); + Object other$loginoutdate = other.getLoginoutdate(); + if (this$loginoutdate == null) { + if (other$loginoutdate != null) { + return false; + } + } else if (!this$loginoutdate.equals(other$loginoutdate)) { + return false; + } + + Object this$none = this.getNone(); + Object other$none = other.getNone(); + if (this$none == null) { + if (other$none != null) { + return false; + } + } else if (!this$none.equals(other$none)) { + return false; + } + + return true; + } + } + } + + protected boolean canEqual(Object other) { + return other instanceof Loginjilu; + } + + public int hashCode() { + + int result = 1; + Object $num = this.getNum(); + result = result * 59 + ($num == null ? 43 : $num.hashCode()); + Object $logincompany = this.getLogincompany(); + result = result * 59 + ($logincompany == null ? 43 : $logincompany.hashCode()); + Object $loginphone = this.getLoginphone(); + result = result * 59 + ($loginphone == null ? 43 : $loginphone.hashCode()); + Object $ip = this.getIp(); + result = result * 59 + ($ip == null ? 43 : $ip.hashCode()); + Object $logindate = this.getLogindate(); + result = result * 59 + ($logindate == null ? 43 : $logindate.hashCode()); + Object $loginoutdate = this.getLoginoutdate(); + result = result * 59 + ($loginoutdate == null ? 43 : $loginoutdate.hashCode()); + Object $none = this.getNone(); + result = result * 59 + ($none == null ? 43 : $none.hashCode()); + return result; + } + + public String toString() { + return "Loginjilu(num=" + this.getNum() + ", logincompany=" + this.getLogincompany() + ", loginphone=" + this.getLoginphone() + ", ip=" + this.getIp() + ", logindate=" + this.getLogindate() + ", loginoutdate=" + this.getLoginoutdate() + ", none=" + this.getNone() + ")"; + } + + public void setNum(Long num) { + this.num = num; + } + + public void setLogincompany(String logincompany) { + this.logincompany = logincompany; + } + + public void setLoginphone(String loginphone) { + this.loginphone = loginphone; + } + + public void setIp(String ip) { + this.ip = ip; + } + + public void setLogindate(String logindate) { + this.logindate = logindate; + } + + public void setLoginoutdate(String loginoutdate) { + this.loginoutdate = loginoutdate; + } + + public void setNone(String none) { + this.none = none; + } + + public Long getNum() { + return this.num; + } + + public String getLogincompany() { + return this.logincompany; + } + + public String getLoginphone() { + return this.loginphone; + } + + public String getIp() { + return this.ip; + } + + public String getLogindate() { + return this.logindate; + } + + public String getLoginoutdate() { + return this.loginoutdate; + } + + public String getNone() { + return this.none; + } +} -- Gitblit v1.9.3