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