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;
|
|
/**
|
* @Author: llming
|
* @Description: 问卷题目
|
*/
|
@Data
|
@TableName(value = "com_act_questnaire_sub")
|
public class ComActQuestnaireSubDO extends BaseDO {
|
@TableId(type= IdType.AUTO)
|
private Long id;
|
/**
|
* 类型 0单选1多选2问答题
|
*/
|
private Integer type;
|
/**
|
* 题目内容
|
*/
|
private String content;
|
/**
|
* 序号
|
*/
|
private Integer sort;
|
/**
|
* 调查问卷Id
|
*/
|
private Long queId;
|
}
|