liujie
2025-06-09 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActQuestnaireDO.java
@@ -1,8 +1,12 @@
package com.panzhihua.service_community.model.dos;
import java.io.Serializable;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
/**
@@ -11,8 +15,9 @@
 */
@Data
@TableName(value = "com_act_questnaire")
public class ComActQuestnaireDO extends BaseDO {
    @TableId(type= IdType.AUTO)
public class ComActQuestnaireDO extends BaseDO implements Serializable {
    private static final long serialVersionUID = 4525826123672211880L;
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
     * 标题
@@ -23,15 +28,114 @@
     */
    private String queDescribe;
    /**
     * 状态 0 调研中 1已停止
     * 状态 1待发布 2调研中 3已结束
     */
    private int state;
    private Integer state;
    /**
     * 参与人数
     */
    private String joinCount;
    private Integer joinCount;
    /**
     * 社区ID
     */
    private Long communityId;
    /**
     * 提供居民
     */
    private Integer forMasses;
    /**
     * 提供党员
     */
    private Integer forParty;
    /**
     * 提供志愿者
     */
    private Integer forVolunteer;
    /**
     * 是否隐藏显示 0 显示 1 隐藏
     */
    private Integer isHide;
    /**
     * 调研开始时间
     */
    private Date startTime;
    /**
     * 调研结束时间
     */
    private Date endTime;
    /**
     * 问卷调查备注(应用名称)
     */
    private String remark;
    /**
     * 是否是封面(1.是 2.否)
     */
    private Integer isCover;
    /**
     * 是否强制调研(1.是 2.否)
     */
    private Integer isForce;
    /**
     * 广告弹窗(1.是 2.否 )
     */
    private Integer adverPositionPopup;
    /**
     * 广告顶部(1.是 2.否)
     */
    private Integer adverPositionTop;
    /**
     * 广告应用(1.是 2.否)
     */
    private Integer adverPositionApplication;
    /**
     * 组件唯一key
     */
    private String projectKey;
    /**
     * 填报项数量
     */
    private Integer count;
    /**
     * 浏览量
     */
    private Long viewNum;
    /**
     * 发布时间
     */
    private Date publishTime;
    /**
     * 组件json数据
     */
    private String jsonObject;
    /**
     * 默认是否枚举
     */
    public interface isOk {
        int yes = 1;
        int no = 2;
    }
    /**
     * 状态 1待发布 2调研中 3已结束
     */
    public interface state {
        int dfb = 1;
        int dyz = 2;
        int yjs = 3;
    }
}