| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * @Author: llming |
| | | * @Description:调查问卷 问卷表 |
| | | */ |
| | | @Data |
| | | @TableName(value = "com_act_questnaire") |
| | | public class ComActQuestnaireDO extends BaseDO { |
| | | public class ComActQuestnaireDO extends BaseDO implements Serializable { |
| | | private static final long serialVersionUID = 4525826123672211880L; |
| | | @TableId(type= IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | |
| | | /** |
| | | * 状态 0 调研中 1已停止 |
| | | */ |
| | | private int state; |
| | | private Integer state; |
| | | /** |
| | | * 参与人数 |
| | | */ |
| | | private String joinCount; |
| | | private Integer joinCount; |
| | | /** |
| | | * 社区ID |
| | | */ |
| | | private Long communityId; |
| | | |
| | | /** |
| | | * 提供居民 |
| | | */ |
| | | private Boolean forMasses; |
| | | /** |
| | | * 提供党员 |
| | | */ |
| | | private Boolean forParty; |
| | | /** |
| | | * 提供志愿者 |
| | | */ |
| | | private Boolean forVolunteer; |
| | | |
| | | /** |
| | | * 是否隐藏显示 0 显示 1 隐藏 |
| | | */ |
| | | private Integer isHide; |
| | | |
| | | } |