| | |
| | | package com.panzhihua.common.model.dtos.neighbor; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @auther llming |
| | |
| | | @ApiModelProperty(value = "分页-每页记录数",example = "10") |
| | | private Long pageSize = 10L; |
| | | |
| | | @ApiModelProperty("邻里圈查询类型(1.热门 2.最新 3.精品)") |
| | | private Integer type = 1; |
| | | |
| | | @ApiModelProperty("发布开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date startAt; |
| | | |
| | | @ApiModelProperty("发布结束时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date endAt; |
| | | |
| | | @ApiModelProperty("议事主题") |
| | | private String releaseContent; |
| | | |
| | | @ApiModelProperty(value = "社区id",hidden = true) |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty(value="发布状态(1.待审核 2.显示 3.隐藏 4.驳回)") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("话题名称") |
| | | private String topicName; |
| | | |
| | | } |