huanghongfa
2021-08-21 2e64c232ab6b51b2cecf1ee96e1e9b709234f326
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActQuestnaireSubDO.java
@@ -1,9 +1,12 @@
package com.panzhihua.service_community.model.dos;
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;
import java.io.Serializable;
/**
 * @Author: llming
@@ -11,13 +14,14 @@
 */
@Data
@TableName(value = "com_act_questnaire_sub")
public class ComActQuestnaireSubDO extends BaseDO {
public class ComActQuestnaireSubDO extends BaseDO implements Serializable {
    private static final long serialVersionUID = 914683789736719693L;
    @TableId(type= IdType.AUTO)
    private Long id;
    /**
     * 类型 0单选1多选2问答题
     */
    private Integer type;
    private int type;
    /**
     * 题目内容
     */
@@ -25,9 +29,15 @@
    /**
     * 序号
     */
    private Integer sort;
    private int sort;
    /**
     * 调查问卷Id
     */
    private Long queId;
    /**
     * 问卷调查题目key
     */
    @TableField("`key`")
    private String key;
}