From c810c88e3c8393b488f494c26643d627bcd5bf50 Mon Sep 17 00:00:00 2001 From: gongbiao Date: Thu, 18 Apr 2019 19:55:45 +0800 Subject: [PATCH] =?UTF-8?q?[=E8=B4=A6=E5=8D=95=E5=AE=A1=E6=89=B9][?= =?UTF-8?q?=E4=BF=AE=E6=94=B9][=E6=9F=A5=E8=AF=A2=E5=95=86=E6=88=B7?= =?UTF-8?q?=E4=BF=A1=E6=81=AF]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/iformall/domain/vo/WxMerchantVo.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java b/mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java index cc849b141..732ed8eb8 100644 --- a/mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java +++ b/mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java @@ -76,6 +76,42 @@ public class WxMerchantVo { @io.swagger.annotations.ApiModelProperty(value = "业态名称", name = "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() { return shopType; }