package com.ishop.model.vo;
|
|
import java.io.Serializable;
|
|
public class ArticleCategoryVo implements Serializable {
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public Integer getSort() {
|
return sort;
|
}
|
|
public void setSort(Integer sort) {
|
this.sort = sort;
|
}
|
|
public Boolean getStatus() {
|
return status;
|
}
|
|
public void setStatus(Boolean status) {
|
this.status = status;
|
}
|
|
// @ApiModelProperty(value = "文章分类ID")
|
private Long id;
|
|
// @ApiModelProperty(value = "分类名称")
|
private String name;
|
|
// @ApiModelProperty(value = "分类图标")
|
private String icon;
|
|
// @ApiModelProperty(value = "排序")
|
private Integer sort;
|
|
// @ApiModelProperty(value = "状态,0-关闭,1-开启")
|
private Boolean status = true;
|
}
|