Просмотр исходного кода

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

release_toaliyun_real
gongbiao 7 лет назад
Родитель
Сommit
0ff2e3dab3
2 измененных файлов: 27 добавлений и 2 удалений
  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 Просмотреть файл

@@ -85,6 +85,13 @@ public class WxMall implements Serializable {
@io.swagger.annotations.ApiModelProperty(value="商场图标",name="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() {
return tenantId;
}
@@ -180,6 +187,22 @@ public class WxMall implements Serializable {
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
{
Id_ASC("`id` ASC"),Id_DESC("`id` DESC")


+ 4
- 2
mallinkService/src/main/resources/mapper/WxMallMapper.xml Просмотреть файл

@@ -18,11 +18,13 @@
<result column="pay_id" jdbcType="BIGINT" property="payId" />
<result column="service_phone" jdbcType="VARCHAR" property="servicePhone" />
<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>
<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 id="dynamicWhereConditions">


Загрузка…
Отмена
Сохранить