ArticleSearchDto.java
899 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
package com.sincere.student.dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel
public class ArticleSearchDto extends PageDto{
@ApiModelProperty(value = "文章类型 1广告文章 2权威解读 必传")
private int articleType ;
@ApiModelProperty(value = "标题")
private String title ;
@ApiModelProperty(value = "文章栏目")
private int columnType ;
public int getArticleType() {
return articleType;
}
public void setArticleType(int articleType) {
this.articleType = articleType;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getColumnType() {
return columnType;
}
public void setColumnType(int columnType) {
this.columnType = columnType;
}
}