package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-14
|
*/
|
@TableName("z_autobiography")
|
public class ZAutobiography implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 用户id
|
*/
|
private Integer userId;
|
|
/**
|
* 婴儿期
|
*/
|
private String infancy;
|
|
/**
|
* 幼儿期
|
*/
|
private String childhood;
|
|
/**
|
* 小学
|
*/
|
private String pri;
|
|
/**
|
* 初中
|
*/
|
private String mid;
|
|
/**
|
* 高中
|
*/
|
private String senior;
|
|
/**
|
* 大学
|
*/
|
private String college;
|
|
/**
|
* 研究生
|
*/
|
private String postgraduate;
|
|
/**
|
* 工作
|
*/
|
private String job;
|
|
/**
|
* 结婚
|
*/
|
private String marry;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public String getInfancy() {
|
return infancy;
|
}
|
|
public void setInfancy(String infancy) {
|
this.infancy = infancy;
|
}
|
|
public String getChildhood() {
|
return childhood;
|
}
|
|
public void setChildhood(String childhood) {
|
this.childhood = childhood;
|
}
|
|
public String getPri() {
|
return pri;
|
}
|
|
public void setPri(String pri) {
|
this.pri = pri;
|
}
|
|
public String getMid() {
|
return mid;
|
}
|
|
public void setMid(String mid) {
|
this.mid = mid;
|
}
|
|
public String getSenior() {
|
return senior;
|
}
|
|
public void setSenior(String senior) {
|
this.senior = senior;
|
}
|
|
public String getCollege() {
|
return college;
|
}
|
|
public void setCollege(String college) {
|
this.college = college;
|
}
|
|
public String getPostgraduate() {
|
return postgraduate;
|
}
|
|
public void setPostgraduate(String postgraduate) {
|
this.postgraduate = postgraduate;
|
}
|
|
public String getJob() {
|
return job;
|
}
|
|
public void setJob(String job) {
|
this.job = job;
|
}
|
|
public String getMarry() {
|
return marry;
|
}
|
|
public void setMarry(String marry) {
|
this.marry = marry;
|
}
|
|
@Override
|
public String toString() {
|
return "ZAutobiography{" +
|
"id=" + id +
|
", userId=" + userId +
|
", infancy=" + infancy +
|
", childhood=" + childhood +
|
", pri=" + pri +
|
", mid=" + mid +
|
", senior=" + senior +
|
", college=" + college +
|
", postgraduate=" + postgraduate +
|
", job=" + job +
|
", marry=" + marry +
|
"}";
|
}
|
}
|