ArticleSearchDto.java
1.1 KB
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
40
41
42
43
44
45
46
47
48
49
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 ;
@ApiModelProperty(value = "状态 0预览1发布 都不用传")
private int status ;
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
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;
}
}