| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import lombok.Data; |
| | | import lombok.ToString; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @author ojq |
| | | * @since 2023-03-14 |
| | | */ |
| | | |
| | | @Data |
| | | @ToString |
| | | @TableName("z_experience") |
| | | public class ZExperience implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | /** |
| | | * 用户id |
| | | */ |
| | | private Integer userId; |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 主要学习经历、工作单位及任职情况 |
| | | */ |
| | | |
| | | @Excel(name = "主要学习经历、工作单位及任职情况") |
| | | private String content; |
| | | |
| | | /** |
| | | * 起始日期 |
| | | */ |
| | | private LocalDateTime startDate; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "起始日期", dateFormat = "yyyy-MM-dd") |
| | | private Date startDate; |
| | | |
| | | /** |
| | | * 证明人名字 |
| | | */ |
| | | @Excel(name = "证明人名字") |
| | | 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 + |
| | | "}"; |
| | | } |
| | | } |