| | |
| | | |
| | | @ApiModelProperty("主题") |
| | | @NotBlank(groups = {AddGroup.class},message = "主题不能为空") |
| | | private String subject; |
| | | private String discussSubject; |
| | | |
| | | @ApiModelProperty("类型 1 图文 2 投票") |
| | | @Min(value =1,groups = {AddGroup.class},message = "类型不能为空") |
| | |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty("1 单选 2 多选") |
| | | private Integer option; |
| | | private Integer discussOption; |
| | | |
| | | @ApiModelProperty("投票标题") |
| | | private String voteTitle; |
| | | |
| | | @ApiModelProperty("选项集合") |
| | | private List<String> discussOptions; |
| | | |
| | | private List<ComActDiscussOptionDTO> discussOptions; |
| | | |
| | | } |