935090232@qq.com
2021-07-09 5ebd818a240239e22cb3a587e616991bf208d56b
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
package com.matrix.system.app.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotNull;
 
/**
 * @author wzy
 * @date 2021-01-05
 **/
@ApiModel(value = "ArticleListDto", description = "文章列表接收参数类")
public class ArticleListDto extends BasePageDto {
 
    @NotNull
    @ApiModelProperty(value = "分类ID")
    private Long typeId;
 
    public Long getTypeId() {
        return typeId;
    }
 
    public void setTypeId(Long typeId) {
        this.typeId = typeId;
    }
}