| | |
| | | @ApiModel("分页查询一起议") |
| | | public class PageComActDiscussDTO { |
| | | @ApiModelProperty(value = "分页-当前页数", example = "1") |
| | | private Long pageNum; |
| | | private Long pageNum = 1L; |
| | | |
| | | @ApiModelProperty(value = "分页-每页记录数", example = "10") |
| | | private Long pageSize; |
| | | private Long pageSize = 10L; |
| | | |
| | | @ApiModelProperty("主题") |
| | | private String subject; |
| | |
| | | |
| | | @ApiModelProperty("小程序使用 1 表示查询我的议题") |
| | | private Integer isMy; |
| | | |
| | | @ApiModelProperty("状态(1.未开始 2.进行中 3.待公布 4.已公布 5.已发布)") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("关键词") |
| | | private String keyWord; |
| | | |
| | | @ApiModelProperty(value = "类型: 1.议事 2.投票,小程序必须传入类型", allowableValues = "1,2") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "展示状态,小程序获取不同状态的投票列表 1.进行中 2.已结束", allowableValues = "1,2") |
| | | private Integer displayStatus; |
| | | } |