Procházet zdrojové kódy

[商场][修改]:添加迈外迪key,url字段

release_toaliyun_real
gongbiao před 7 roky
rodič
revize
0ff2e3dab3
2 změnil soubory, kde provedl 27 přidání a 2 odebrání
  1. +23
    -0
      mallinkService/src/main/java/com/simple/domain/po/WxMall.java
  2. +4
    -2
      mallinkService/src/main/resources/mapper/WxMallMapper.xml

+ 23
- 0
mallinkService/src/main/java/com/simple/domain/po/WxMall.java Zobrazit soubor

@@ -85,6 +85,13 @@ public class WxMall implements Serializable {
@io.swagger.annotations.ApiModelProperty(value="商场图标",name="imgUrl") @io.swagger.annotations.ApiModelProperty(value="商场图标",name="imgUrl")
private String imgUrl; private String imgUrl;


@io.swagger.annotations.ApiModelProperty(value="迈外迪key",name="wiwideKey")
private String wiwideKey;

@io.swagger.annotations.ApiModelProperty(value="迈外迪url",name="wiwideUrl")
private String wiwideUrl;


public String getTenantId() { public String getTenantId() {
return tenantId; return tenantId;
} }
@@ -180,6 +187,22 @@ public class WxMall implements Serializable {
this.imgUrl = _imgUrl; this.imgUrl = _imgUrl;
} }


public String getWiwideKey() {
return wiwideKey;
}

public void setWiwideKey(String wiwideKey) {
this.wiwideKey = wiwideKey;
}

public String getWiwideUrl() {
return wiwideUrl;
}

public void setWiwideUrl(String wiwideUrl) {
this.wiwideUrl = wiwideUrl;
}

public static enum Field public static enum Field
{ {
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") Id_ASC("`id` ASC"),Id_DESC("`id` DESC")


+ 4
- 2
mallinkService/src/main/resources/mapper/WxMallMapper.xml Zobrazit soubor

@@ -18,11 +18,13 @@
<result column="pay_id" jdbcType="BIGINT" property="payId" /> <result column="pay_id" jdbcType="BIGINT" property="payId" />
<result column="service_phone" jdbcType="VARCHAR" property="servicePhone" /> <result column="service_phone" jdbcType="VARCHAR" property="servicePhone" />
<result column="img_url" jdbcType="VARCHAR" property="imgUrl" /> <result column="img_url" jdbcType="VARCHAR" property="imgUrl" />

<result column="wiwide_key" jdbcType="VARCHAR" property="wiwideKey" />
<result column="wiwide_url" jdbcType="VARCHAR" property="wiwideUrl" />
</resultMap> </resultMap>
<sql id="allColumns"> <sql id="allColumns">
`id`,`tenant_id`,`name`,`group`,`country`,`province`,`city`,`addr`,`wiwide_id`,`total_area`,`operating_area`,`park_area`,`park_place_number`,`pay_id`,`service_phone`,`img_url`
`id`,`tenant_id`,`name`,`group`,`country`,`province`,`city`,`addr`,`wiwide_id`,`total_area`,`operating_area`,`park_area`,`park_place_number`,`pay_id`,`service_phone`,`img_url`,`wiwide_key`,`wiwide_url`
</sql> </sql>


<sql id="dynamicWhereConditions"> <sql id="dynamicWhereConditions">


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