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;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-14
|
*/
|
@TableName("z_experience")
|
public class ZExperience implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 用户id
|
*/
|
private Integer userId;
|
|
/**
|
* 主要学习经历、工作单位及任职情况
|
*/
|
private String content;
|
|
/**
|
* 起始日期
|
*/
|
private LocalDateTime startDate;
|
|
/**
|
* 证明人名字
|
*/
|
private String witness;
|
|
|
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 getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public LocalDateTime getStartDate() {
|
return startDate;
|
}
|
|
public void setStartDate(LocalDateTime startDate) {
|
this.startDate = startDate;
|
}
|
|
public String getWitness() {
|
return witness;
|
}
|
|
public void setWitness(String witness) {
|
this.witness = witness;
|
}
|
|
@Override
|
public String toString() {
|
return "ZExperience{" +
|
"id=" + id +
|
", userId=" + userId +
|
", content=" + content +
|
", startDate=" + startDate +
|
", witness=" + witness +
|
"}";
|
}
|
}
|