package com.ishop.model.vo;
|
|
import java.io.Serializable;
|
|
public class ProductGuaranteeVo implements Serializable {
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer 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 String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Integer getSort() {
|
return sort;
|
}
|
|
public void setSort(Integer sort) {
|
this.sort = sort;
|
}
|
|
public Integer getIsShow() {
|
return isShow;
|
}
|
|
public void setIsShow(Integer isShow) {
|
this.isShow = isShow;
|
}
|
|
public Long getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getMerNum() {
|
return merNum;
|
}
|
|
public void setMerNum(Integer merNum) {
|
this.merNum = merNum;
|
}
|
|
public Integer getProNum() {
|
return proNum;
|
}
|
|
public void setProNum(Integer proNum) {
|
this.proNum = proNum;
|
}
|
|
// @ApiModelProperty(value = "保障条款Id")
|
private Integer id;
|
|
// @ApiModelProperty(value = "保障条款名称")
|
private String name;
|
|
// @ApiModelProperty(value = "图标")
|
private String icon;
|
|
// @ApiModelProperty(value = "条款内容")
|
private String content;
|
|
// @ApiModelProperty(value = "排序")
|
private Integer sort;
|
|
// @ApiModelProperty(value = "显示状态")
|
private Integer isShow;
|
|
// @ApiModelProperty(value = "创建时间")
|
private Long createTime;
|
|
// @ApiModelProperty(value = "使用商户数")
|
private Integer merNum;
|
|
// @ApiModelProperty(value = "使用商品数")
|
private Integer proNum;
|
}
|