101captain
2021-12-23 5a8a90c095280fbd2106869ecd2bad10e01a57a6
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActQuestnaireSubSelectionDO.java
@@ -1,8 +1,12 @@
package com.panzhihua.service_community.model.dos;
import java.io.Serializable;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
/**
@@ -11,23 +15,47 @@
 */
@Data
@TableName(value = "com_act_questnaire_sub_selection")
public class ComActQuestnaireSubSelectionDO extends BaseDO {
    @TableId(type= IdType.AUTO)
public class ComActQuestnaireSubSelectionDO extends BaseDO implements Serializable {
    private static final long serialVersionUID = -2083705916360506830L;
    @TableId(type = IdType.AUTO)
    private Long id;
    /**
     * 问卷题目Id
     */
    private Long queSubId;
    /**
     * 选项类型 0单选1多选2问答题
     */
    private int type;
    /**
     * 选项排序
     */
    private int sort;
    private Integer sort;
    /**
     * 选项内容
     */
    private String content;
    /**
     * 选项名
     */
    private String optionName;
    /**
     * 选项类型 0 固定选项 1 自定义选项
     */
    private Integer type;
    /**
     * 问卷调查Id
     */
    private Long queId;
    /**
     * 问卷调查选项key
     */
    @TableField("`key`")
    private String key;
    /**
     * 组件文件上传保存路径
     */
    private String url;
}