| @@ -76,6 +76,42 @@ public class WxMerchantVo { | |||||
| @io.swagger.annotations.ApiModelProperty(value = "业态名称", name = "businessName") | @io.swagger.annotations.ApiModelProperty(value = "业态名称", name = "businessName") | ||||
| private String businessName; | private String businessName; | ||||
| @io.swagger.annotations.ApiModelProperty(value = "email", name = "email") | |||||
| private String email; | |||||
| @io.swagger.annotations.ApiModelProperty(value = "副标题", name = "title") | |||||
| private String title; | |||||
| @io.swagger.annotations.ApiModelProperty(value = "封面图", name = "coverPicture") | |||||
| private String coverPicture; | |||||
| public String getTitle() { | |||||
| return title; | |||||
| } | |||||
| public void setTitle(String title) { | |||||
| this.title = title; | |||||
| } | |||||
| public String getCoverPicture() { | |||||
| return coverPicture; | |||||
| } | |||||
| public void setCoverPicture(String coverPicture) { | |||||
| this.coverPicture = coverPicture; | |||||
| } | |||||
| public String getEmail() { | |||||
| return email; | |||||
| } | |||||
| public void setEmail(String email) { | |||||
| this.email = email; | |||||
| } | |||||
| public Integer getShopType() { | public Integer getShopType() { | ||||
| return shopType; | return shopType; | ||||
| } | } | ||||