diff --git a/src/main/java/top/ezzd/top/pojo b/src/main/java/top/ezzd/top/pojo new file mode 100644 index 0000000..cf8cc43 --- /dev/null +++ b/src/main/java/top/ezzd/top/pojo @@ -0,0 +1,318 @@ +package top.ezzd.pojo; + +public class Apply { + private String uname; + private String name; + private String gender; + private String photopath; + private String phonenumber; + private String age; + private String home; + private String college; + private String collegeName; + private String classno; + private String department; + private String isother; + private String isallow; + private String hobby; + private String reason; + private String applytime; + private String applystatus; + private String e_mail; + private String qqnum; + private String grade; + private String job; + private String jointime; + public String getUname() { + return uname; + } + public void setUname(String uname) { + this.uname = uname; + } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String getGender() { + return gender; + } + public void setGender(String gender) { + this.gender = gender; + } + public String getPhotopath() { + return photopath; + } + public void setPhotopath(String photopath) { + this.photopath = photopath; + } + public String getPhonenumber() { + return phonenumber; + } + public void setPhonenumber(String phonenumber) { + this.phonenumber = phonenumber; + } + public String getAge() { + return age; + } + public void setAge(String age) { + this.age = age; + } + public String getHome() { + return home; + } + public void setHome(String home) { + this.home = home; + } + public String getCollege() { + return college; + } + public void setCollege(String college) { + this.college = college; + } + public String getCollegeName() { + return collegeName; + } + public void setCollegeName(String collegeName) { + this.collegeName = collegeName; + } + public String getClassno() { + return classno; + } + public void setClassno(String classno) { + this.classno = classno; + } + public String getDepartment() { + return department; + } + public void setDepartment(String department) { + this.department = department; + } + public String getIsother() { + return isother; + } + public void setIsother(String isother) { + this.isother = isother; + } + public String getIsallow() { + return isallow; + } + public void setIsallow(String isallow) { + this.isallow = isallow; + } + public String getHobby() { + return hobby; + } + public void setHobby(String hobby) { + this.hobby = hobby; + } + public String getReason() { + return reason; + } + public void setReason(String reason) { + this.reason = reason; + } + public String getApplytime() { + return applytime; + } + public void setApplytime(String applytime) { + this.applytime = applytime; + } + public String getApplystatus() { + return applystatus; + } + public void setApplystatus(String applystatus) { + this.applystatus = applystatus; + } + public String getE_mail() { + return e_mail; + } + public void setE_mail(String e_mail) { + this.e_mail = e_mail; + } + public String getQqnum() { + return qqnum; + } + public void setQqnum(String qqnum) { + this.qqnum = qqnum; + } + public String getGrade() { + return grade; + } + public void setGrade(String grade) { + this.grade = grade; + } + public String getJob() { + return job; + } + public void setJob(String job) { + this.job = job; + } + public String getJointime() { + return jointime; + } + public void setJointime(String jointime) { + this.jointime = jointime; + } + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((age == null) ? 0 : age.hashCode()); + result = prime * result + ((applystatus == null) ? 0 : applystatus.hashCode()); + result = prime * result + ((applytime == null) ? 0 : applytime.hashCode()); + result = prime * result + ((classno == null) ? 0 : classno.hashCode()); + result = prime * result + ((college == null) ? 0 : college.hashCode()); + result = prime * result + ((collegeName == null) ? 0 : collegeName.hashCode()); + result = prime * result + ((department == null) ? 0 : department.hashCode()); + result = prime * result + ((e_mail == null) ? 0 : e_mail.hashCode()); + result = prime * result + ((gender == null) ? 0 : gender.hashCode()); + result = prime * result + ((grade == null) ? 0 : grade.hashCode()); + result = prime * result + ((hobby == null) ? 0 : hobby.hashCode()); + result = prime * result + ((home == null) ? 0 : home.hashCode()); + result = prime * result + ((isallow == null) ? 0 : isallow.hashCode()); + result = prime * result + ((isother == null) ? 0 : isother.hashCode()); + result = prime * result + ((job == null) ? 0 : job.hashCode()); + result = prime * result + ((jointime == null) ? 0 : jointime.hashCode()); + result = prime * result + ((name == null) ? 0 : name.hashCode()); + result = prime * result + ((phonenumber == null) ? 0 : phonenumber.hashCode()); + result = prime * result + ((photopath == null) ? 0 : photopath.hashCode()); + result = prime * result + ((qqnum == null) ? 0 : qqnum.hashCode()); + result = prime * result + ((reason == null) ? 0 : reason.hashCode()); + result = prime * result + ((uname == null) ? 0 : uname.hashCode()); + return result; + } + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + Apply other = (Apply) obj; + if (age == null) { + if (other.age != null) + return false; + } else if (!age.equals(other.age)) + return false; + if (applystatus == null) { + if (other.applystatus != null) + return false; + } else if (!applystatus.equals(other.applystatus)) + return false; + if (applytime == null) { + if (other.applytime != null) + return false; + } else if (!applytime.equals(other.applytime)) + return false; + if (classno == null) { + if (other.classno != null) + return false; + } else if (!classno.equals(other.classno)) + return false; + if (college == null) { + if (other.college != null) + return false; + } else if (!college.equals(other.college)) + return false; + if (collegeName == null) { + if (other.collegeName != null) + return false; + } else if (!collegeName.equals(other.collegeName)) + return false; + if (department == null) { + if (other.department != null) + return false; + } else if (!department.equals(other.department)) + return false; + if (e_mail == null) { + if (other.e_mail != null) + return false; + } else if (!e_mail.equals(other.e_mail)) + return false; + if (gender == null) { + if (other.gender != null) + return false; + } else if (!gender.equals(other.gender)) + return false; + if (grade == null) { + if (other.grade != null) + return false; + } else if (!grade.equals(other.grade)) + return false; + if (hobby == null) { + if (other.hobby != null) + return false; + } else if (!hobby.equals(other.hobby)) + return false; + if (home == null) { + if (other.home != null) + return false; + } else if (!home.equals(other.home)) + return false; + if (isallow == null) { + if (other.isallow != null) + return false; + } else if (!isallow.equals(other.isallow)) + return false; + if (isother == null) { + if (other.isother != null) + return false; + } else if (!isother.equals(other.isother)) + return false; + if (job == null) { + if (other.job != null) + return false; + } else if (!job.equals(other.job)) + return false; + if (jointime == null) { + if (other.jointime != null) + return false; + } else if (!jointime.equals(other.jointime)) + return false; + if (name == null) { + if (other.name != null) + return false; + } else if (!name.equals(other.name)) + return false; + if (phonenumber == null) { + if (other.phonenumber != null) + return false; + } else if (!phonenumber.equals(other.phonenumber)) + return false; + if (photopath == null) { + if (other.photopath != null) + return false; + } else if (!photopath.equals(other.photopath)) + return false; + if (qqnum == null) { + if (other.qqnum != null) + return false; + } else if (!qqnum.equals(other.qqnum)) + return false; + if (reason == null) { + if (other.reason != null) + return false; + } else if (!reason.equals(other.reason)) + return false; + if (uname == null) { + if (other.uname != null) + return false; + } else if (!uname.equals(other.uname)) + return false; + return true; + } + @Override + public String toString() { + return "Apply [uname=" + uname + ", name=" + name + ", gender=" + gender + ", photopath=" + photopath + + ", phonenumber=" + phonenumber + ", age=" + age + ", home=" + home + ", college=" + college + + ", collegeName=" + collegeName + ", classno=" + classno + ", department=" + department + ", isother=" + + isother + ", isallow=" + isallow + ", hobby=" + hobby + ", reason=" + reason + ", applytime=" + + applytime + ", applystatus=" + applystatus + ", e_mail=" + e_mail + ", qqnum=" + qqnum + ", grade=" + + grade + ", job=" + job + ", jointime=" + jointime + "]"; + } + + +}