liujie
2025-06-09 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActDynDO.java
@@ -5,6 +5,7 @@
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
@@ -21,7 +22,7 @@
    /**
     * 自增id
     */
    @TableId(type = IdType.AUTO)
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
@@ -57,7 +58,7 @@
    /**
     * 社区id
     */
    private Long communityId;
    private String communityId;
    /**
     * 动态内容富文本
     */
@@ -71,7 +72,7 @@
    /**
     * 社区动态分类id
     */
    private Long type;
    private String type;
    /**
     * 封面模式:1-小图展示 2-大图展示
@@ -87,4 +88,23 @@
     * 跳转状态
     */
    private Integer jumpType;
    /**
     * 类型(1.社区动态 2.党务公开 3.花城资讯)
     */
    private Integer category;
    private Integer readNum;
    private Date releaseTime;
    /**
     * 广告是否置顶
     * */
    private Integer onTop;
    /**
     * 图片链接
     * */
    private String imageUrl;
}