package com.panzhihua.service_community.model.dos;
|
|
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;
|
import java.util.Date;
|
|
|
/**
|
* @auther lyq
|
* @create 2021-08-23 10:33:32
|
* @describe 预约登记回答记录内容 实体类
|
*/
|
|
@Data
|
@TableName("com_act_reserve_answer_content")
|
public class ComActReserveAnswerContentDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 预约登记题目id
|
*/
|
private Long reserveSubId;
|
|
/**
|
* 预约登记记录id
|
*/
|
private Long reserveRecordId;
|
|
/**
|
* 预约登记题目选项id
|
*/
|
private Long reserveSelectionId;
|
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
|
/**
|
* 题目类型(1.选项题 2.问答题)
|
*/
|
private Integer type;
|
|
/**
|
* 问卷回答选项
|
*/
|
private String choice;
|
|
/**
|
* 问卷回答内容
|
*/
|
private String answerContent;
|
|
/**
|
* 创建人
|
*/
|
private Long createBy;
|
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
|
/**
|
* 更新人
|
*/
|
private String updateBy;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateAt;
|
|
@Override
|
public String toString() {
|
return "ComActReserveAnswerContentDO{" +
|
"id=" + id +
|
", reserveSubId=" + reserveSubId +
|
", reserveSelectionId=" + reserveSelectionId +
|
", userId=" + userId +
|
", type=" + type +
|
", choice=" + choice +
|
", answerContent=" + answerContent +
|
", createBy=" + createBy +
|
", createAt=" + createAt +
|
", updateBy=" + updateBy +
|
", updateAt=" + updateAt +
|
"}";
|
}
|
}
|