Procházet zdrojové kódy

[账单审批][修改][查询商户信息]

release_toaliyun_real
gongbiao před 7 roky
rodič
revize
460d621c2e
2 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. +3
    -0
      mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java
  2. +2
    -1
      mallinkService/src/main/resources/mapper/WxMerchantMapper.xml

+ 3
- 0
mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java Zobrazit soubor

@@ -88,6 +88,9 @@ public class WxMerchantVo {
@io.swagger.annotations.ApiModelProperty(value = "封面图", name = "coverPicture") @io.swagger.annotations.ApiModelProperty(value = "封面图", name = "coverPicture")
private String coverPicture; private String coverPicture;


@io.swagger.annotations.ApiModelProperty(value = "品牌简介", name = "summary")
private String summary;

public String getTitle() { public String getTitle() {
return title; return title;
} }


+ 2
- 1
mallinkService/src/main/resources/mapper/WxMerchantMapper.xml Zobrazit soubor

@@ -121,7 +121,7 @@
<sql id="allMerchantVoColumns"> <sql id="allMerchantVoColumns">
m.id,m.img_url,m.name,m.link_phone,m.status,m.business_id,m.sub_business_id, m.id,m.img_url,m.name,m.link_phone,m.status,m.business_id,m.sub_business_id,
m.is_public,m.email,m.title,m.cover_picture,b.name as brand_name,b.logo as brand_img, m.is_public,m.email,m.title,m.cover_picture,b.name as brand_name,b.logo as brand_img,
m.shop_type,bu.title as business_name
m.shop_type,bu.title as business_name,b.summary
</sql> </sql>
<select id="getMerchantByCode" parameterType="java.util.Map" resultMap="MerchantVoResultMap"> <select id="getMerchantByCode" parameterType="java.util.Map" resultMap="MerchantVoResultMap">
@@ -161,6 +161,7 @@
<result column="brand_name" jdbcType="VARCHAR" property="brandName"/> <result column="brand_name" jdbcType="VARCHAR" property="brandName"/>
<result column="brand_img" jdbcType="VARCHAR" property="brandImg"/> <result column="brand_img" jdbcType="VARCHAR" property="brandImg"/>
<result column="summary" jdbcType="VARCHAR" property="summary"/>
<result column="business_name" jdbcType="VARCHAR" property="businessName"/> <result column="business_name" jdbcType="VARCHAR" property="businessName"/>


Načítá se…
Zrušit
Uložit