| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.Max; |
| | | import javax.validation.constraints.Min; |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | @Data |
| | | public class ExportStaticsDTO { |
| | | @ApiModelProperty("关键词id") |
| | | @NotNull(message = "关键词id不能为空") |
| | | private Integer keywordId; |
| | | @ApiModelProperty("提问词id") |
| | | private Integer questionId; |
| | | @ApiModelProperty("是否首次 0-否 1- 是") |
| | | @Max(value = 1 , message = "是否首次选择范围为0-1") |
| | | @Min(value = 0 , message = "是否首次选择范围为0-1") |
| | | private Integer isFirst; |
| | | } |