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;
|
|
/**
|
* @Author: llming
|
* @Description:调查问卷 问卷表
|
*/
|
@Data
|
@TableName(value = "com_act_questnaire")
|
public class ComActQuestnaireDO extends BaseDO implements Serializable {
|
private static final long serialVersionUID = 4525826123672211880L;
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
/**
|
* 标题
|
*/
|
private String title;
|
/**
|
* 问题描述
|
*/
|
private String queDescribe;
|
/**
|
* 状态 1待发布 2调研中 3已结束
|
*/
|
private Integer state;
|
/**
|
* 参与人数
|
*/
|
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;
|
}
|
|
}
|