package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-14
|
*/
|
@Data
|
@TableName("z_autobiography")
|
public class ZAutobiography implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
|
/**
|
* 时期
|
*/
|
private String term;
|
|
/**
|
* 自传内容
|
*/
|
private String content;
|
|
/**
|
* 开始年龄
|
*/
|
private String ageBegin;
|
|
/**
|
* 结束年龄
|
*/
|
private String ageEnd;
|
|
/**
|
* 分享人
|
*/
|
private Integer shareId;
|
}
|