package com.ishop.model.vo; /** * 商户首页信息 * @date 2023-07-04 */ public class MerchantIndexVo extends MerchantServiceInfoVo { 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 Integer getCategoryId() { return categoryId; } public void setCategoryId(Integer categoryId) { this.categoryId = categoryId; } public Integer getTypeId() { return typeId; } public void setTypeId(Integer typeId) { this.typeId = typeId; } public Boolean getIsSelf() { return isSelf; } public void setIsSelf(Boolean self) { isSelf = self; } public String getBackImage() { return backImage; } public void setBackImage(String backImage) { this.backImage = backImage; } public String getAvatar() { return avatar; } public void setAvatar(String avatar) { this.avatar = avatar; } public Integer getStarLevel() { return starLevel; } public void setStarLevel(Integer starLevel) { this.starLevel = starLevel; } public Boolean getIsCollect() { return isCollect; } public void setIsCollect(Boolean collect) { isCollect = collect; } // @ApiModelProperty(value = "商户ID") private Integer id; // @ApiModelProperty(value = "商户名称") private String name; // @ApiModelProperty(value = "商户分类ID") private Integer categoryId; // @ApiModelProperty(value = "商户类型ID") private Integer typeId; // @ApiModelProperty(value = "是否自营:0-非自营,1-自营") private Boolean isSelf; // @ApiModelProperty(value = "商户背景图") private String backImage; // @ApiModelProperty(value = "商户头像") private String avatar; // @ApiModelProperty(value = "商户星级1-5") private Integer starLevel; // @ApiModelProperty(value = "是否关注:0-未关注,1-已关注") private Boolean isCollect; //// @ApiModelProperty(value = "客服类型:H5-H5链接、phone-电话") // private String serviceType; // //// @ApiModelProperty(value = "客服H5链接") // private String serviceLink; // //// @ApiModelProperty(value = "客服电话") // private String servicePhone; // @ApiModelProperty(value = "pcBanner") // private String pcBanner; // // @ApiModelProperty(value = "pc背景图") // private String pcBackImage; }