| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- package com.zhentao.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.util.Date;
- import lombok.Data;
- /**
- * 红娘申请表
- * @TableName marr_apply
- */
- @TableName(value ="marr_apply")
- @Data
- public class MarrApply {
- /**
- * 红娘申请id
- */
- @TableId
- private Long applyId;
- /**
- * 用户id
- */
- private Integer userId;
- /**
- * 姓名
- */
- private String name;
- /**
- * 手机号
- */
- private String phone;
- /**
- * 电子邮箱
- */
- private String email;
- /**
- * 年龄
- */
- private Integer age;
- /**
- * 0-未知,1-男,2-女
- */
- private Integer gender;
- /**
- * 所在地区
- */
- private String area;
- /**
- * 婚姻介绍经验
- */
- private String experience;
- /**
- * 可服务时间
- */
- private String serverTime;
- /**
- * 个人简介
- */
- private String introduction;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 创建人
- */
- private String createMan;
- /**
- * 更新时间
- */
- private Date updateTime;
- /**
- * 更新人
- */
- private String updateMan;
- /**
- * 状态0-正常,1-禁止
- */
- private Integer status;
- /**
- * 删除状态0-正常,1-禁止 默认为0
- * */
- private String idStatus;
- @Override
- public boolean equals(Object that) {
- if (this == that) {
- return true;
- }
- if (that == null) {
- return false;
- }
- if (getClass() != that.getClass()) {
- return false;
- }
- MarrApply other = (MarrApply) that;
- return (this.getApplyId() == null ? other.getApplyId() == null : this.getApplyId().equals(other.getApplyId()))
- && (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
- && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName()))
- && (this.getPhone() == null ? other.getPhone() == null : this.getPhone().equals(other.getPhone()))
- && (this.getEmail() == null ? other.getEmail() == null : this.getEmail().equals(other.getEmail()))
- && (this.getAge() == null ? other.getAge() == null : this.getAge().equals(other.getAge()))
- && (this.getGender() == null ? other.getGender() == null : this.getGender().equals(other.getGender()))
- && (this.getArea() == null ? other.getArea() == null : this.getArea().equals(other.getArea()))
- && (this.getExperience() == null ? other.getExperience() == null : this.getExperience().equals(other.getExperience()))
- && (this.getServerTime() == null ? other.getServerTime() == null : this.getServerTime().equals(other.getServerTime()))
- && (this.getIntroduction() == null ? other.getIntroduction() == null : this.getIntroduction().equals(other.getIntroduction()))
- && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
- && (this.getCreateMan() == null ? other.getCreateMan() == null : this.getCreateMan().equals(other.getCreateMan()))
- && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime()))
- && (this.getUpdateMan() == null ? other.getUpdateMan() == null : this.getUpdateMan().equals(other.getUpdateMan()))
- && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus()));
- }
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((getApplyId() == null) ? 0 : getApplyId().hashCode());
- result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
- result = prime * result + ((getName() == null) ? 0 : getName().hashCode());
- result = prime * result + ((getPhone() == null) ? 0 : getPhone().hashCode());
- result = prime * result + ((getEmail() == null) ? 0 : getEmail().hashCode());
- result = prime * result + ((getAge() == null) ? 0 : getAge().hashCode());
- result = prime * result + ((getGender() == null) ? 0 : getGender().hashCode());
- result = prime * result + ((getArea() == null) ? 0 : getArea().hashCode());
- result = prime * result + ((getExperience() == null) ? 0 : getExperience().hashCode());
- result = prime * result + ((getServerTime() == null) ? 0 : getServerTime().hashCode());
- result = prime * result + ((getIntroduction() == null) ? 0 : getIntroduction().hashCode());
- result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
- result = prime * result + ((getCreateMan() == null) ? 0 : getCreateMan().hashCode());
- result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode());
- result = prime * result + ((getUpdateMan() == null) ? 0 : getUpdateMan().hashCode());
- result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode());
- return result;
- }
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder();
- sb.append(getClass().getSimpleName());
- sb.append(" [");
- sb.append("Hash = ").append(hashCode());
- sb.append(", applyId=").append(applyId);
- sb.append(", userId=").append(userId);
- sb.append(", name=").append(name);
- sb.append(", phone=").append(phone);
- sb.append(", email=").append(email);
- sb.append(", age=").append(age);
- sb.append(", gender=").append(gender);
- sb.append(", area=").append(area);
- sb.append(", experience=").append(experience);
- sb.append(", serverTime=").append(serverTime);
- sb.append(", introduction=").append(introduction);
- sb.append(", createTime=").append(createTime);
- sb.append(", createMan=").append(createMan);
- sb.append(", updateTime=").append(updateTime);
- sb.append(", updateMan=").append(updateMan);
- sb.append(", status=").append(status);
- sb.append("]");
- return sb.toString();
- }
- }
|