shikeying
2024-03-31 bde8258f7de3dfc5cbf0fc59f2b74ed0fd073df7
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.ishop.merchant.pojo;
 
import com.walker.web.param.ParamRequest;
 
public class ArticleParam extends ParamRequest {
 
    public Long getCid() {
        return cid;
    }
 
    public void setCid(Long cid) {
        this.cid = cid;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getAuthor() {
        return author;
    }
 
    public void setAuthor(String author) {
        this.author = author;
    }
 
    //    @ApiModelProperty(value = "分类id")
    private Long cid;
 
//    @ApiModelProperty(value = "文章标题")
    private String title;
 
//    @ApiModelProperty(value = "文章作者")
    private String author;
}