| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | @ApiModelProperty("是否置顶 0 否 1 是") |
| | | private Integer isTopping; |
| | | |
| | | @ApiModelProperty("发布时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @ApiModelProperty(value = "发布时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date publishAt; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | |
| | | @ApiModelProperty(value = "社区id",hidden = true) |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty("当前页数") |
| | | @ApiModelProperty(value = "当前页数",example = "1") |
| | | private Long pageNum; |
| | | |
| | | @ApiModelProperty("每页记录数") |
| | | @ApiModelProperty(value = "每页记录数",example = "10") |
| | | private Long pageSize; |
| | | |
| | | @ApiModelProperty("发布搜索开始时间") |