| | |
| | | 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; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @Author: llming |
| | |
| | | @TableName(value = "com_act_questnaire") |
| | | public class ComActQuestnaireDO extends BaseDO implements Serializable { |
| | | private static final long serialVersionUID = 4525826123672211880L; |
| | | @TableId(type= IdType.AUTO) |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | | * 标题 |
| | |
| | | private String remark; |
| | | |
| | | /** |
| | | * 是否是封面(1.是 2.否) |
| | | * 是否是封面(1.是 2.否) |
| | | */ |
| | | private Integer isCover; |
| | | |
| | |
| | | private Integer adverPositionPopup; |
| | | |
| | | /** |
| | | * 广告顶部(1.是 2.否) |
| | | * 广告顶部(1.是 2.否) |
| | | */ |
| | | private Integer adverPositionTop; |
| | | |
| | | /** |
| | | * 广告应用(1.是 2.否) |
| | | * 广告应用(1.是 2.否) |
| | | */ |
| | | private Integer adverPositionApplication; |
| | | |
| | |
| | | /** |
| | | * 默认是否枚举 |
| | | */ |
| | | public interface isOk{ |
| | | public interface isOk { |
| | | int yes = 1; |
| | | int no = 2; |
| | | } |
| | | |
| | | /** |
| | | * 状态 1待发布 2调研中 3已结束 |
| | | */ |
| | | public interface state{ |
| | | public interface state { |
| | | int dfb = 1; |
| | | int dyz = 2; |
| | | int yjs = 3; |