package com.ishop.model.vo;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 移动端,商品详情,商户信息。
|
* @date 2023-07-04
|
*/
|
public class ProductMerchantVo implements Serializable {
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getAvatar() {
|
return avatar;
|
}
|
|
public void setAvatar(String avatar) {
|
this.avatar = avatar;
|
}
|
|
public Boolean getSelf() {
|
return isSelf;
|
}
|
|
public void setSelf(Boolean self) {
|
isSelf = self;
|
}
|
|
public Integer getStarLevel() {
|
return starLevel;
|
}
|
|
public void setStarLevel(Integer starLevel) {
|
this.starLevel = starLevel;
|
}
|
|
public Integer getTypeId() {
|
return typeId;
|
}
|
|
public void setTypeId(Integer typeId) {
|
this.typeId = typeId;
|
}
|
|
public List<ProMerchantProductVo> getProList() {
|
return proList;
|
}
|
|
public void setProList(List<ProMerchantProductVo> proList) {
|
this.proList = proList;
|
}
|
|
public Integer getCollectNum() {
|
return collectNum;
|
}
|
|
public void setCollectNum(Integer collectNum) {
|
this.collectNum = collectNum;
|
}
|
|
// @ApiModelProperty(value = "商户名称")
|
private String name;
|
|
// @ApiModelProperty(value = "商户头像")
|
private String avatar;
|
|
// @ApiModelProperty(value = "是否自营:0-非自营,1-自营")
|
private Boolean isSelf;
|
|
// @ApiModelProperty(value = "商户星级1-5")
|
private Integer starLevel;
|
|
// @ApiModelProperty(value = "商户类型ID")
|
private Integer typeId;
|
|
// @ApiModelProperty(value = "商户商品列表")
|
private List<ProMerchantProductVo> proList;
|
|
// @ApiModelProperty(value = "关注商户用户数")
|
private Integer collectNum;
|
}
|