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;
|
}
|
}
|