zainali5120
2020-10-09 bc489f2d0ac40d23260d961f7eb43634b8a69fea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.xcong.excoin.modules.helpCenter.dto;
 
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ImportantNoticePageDto", description = "参数接受类")
public class ImportantNoticePageDto {
    
    @NotNull
    @Min(1)
    @ApiModelProperty(value = "第几页", example = "1")
    private int pageNum;
 
    @NotNull
    @ApiModelProperty(value = "每页数量", example = "10")
    private int pageSize;
    
    @NotNull
    @ApiModelProperty(value = "类型1:中文2:英文", example = "1")
    private int type;
 
}