抖音核销手机号
This commit is contained in:
@@ -30,6 +30,7 @@
|
|||||||
<result property="updateUser" column="update_user" jdbcType="VARCHAR"/>
|
<result property="updateUser" column="update_user" jdbcType="VARCHAR"/>
|
||||||
<result property="poi" column="poi" jdbcType="VARCHAR"/>
|
<result property="poi" column="poi" jdbcType="VARCHAR"/>
|
||||||
<result property="storeId" column="store_id" jdbcType="VARCHAR"/>
|
<result property="storeId" column="store_id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="dyMobile" column="dy_mobile" jdbcType="VARCHAR"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
@@ -40,6 +41,6 @@
|
|||||||
settler_bank_name,
|
settler_bank_name,
|
||||||
account,store_positioning_url,authorization_url,
|
account,store_positioning_url,authorization_url,
|
||||||
create_time,update_time,create_user,
|
create_time,update_time,create_user,
|
||||||
update_user,poi,store_id
|
update_user,poi,store_id,dy_mobile
|
||||||
</sql>
|
</sql>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
@@ -158,4 +158,10 @@ public class PlatformBuildDO {
|
|||||||
@Column(name = "store_id")
|
@Column(name = "store_id")
|
||||||
private String storeId;
|
private String storeId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 抖音核销手机号
|
||||||
|
*/
|
||||||
|
@Column(name = "dy_mobile")
|
||||||
|
private String dyMobile;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -103,6 +103,7 @@ public class PlatformBuildRequest {
|
|||||||
platformBuildDO.setStorePositioningUrl(this.storePositioningUrl);
|
platformBuildDO.setStorePositioningUrl(this.storePositioningUrl);
|
||||||
platformBuildDO.setAuthorizationUrl(this.authorizationUrl);
|
platformBuildDO.setAuthorizationUrl(this.authorizationUrl);
|
||||||
platformBuildDO.setKsAccount(this.ksAccount);
|
platformBuildDO.setKsAccount(this.ksAccount);
|
||||||
|
platformBuildDO.setDyMobile(this.dyMobile);
|
||||||
return platformBuildDO;
|
return platformBuildDO;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -100,6 +100,8 @@ public class PlatformBuildResponse {
|
|||||||
private String shopProvinceCityDistrict;
|
private String shopProvinceCityDistrict;
|
||||||
@ApiModelProperty("门店详细地址")
|
@ApiModelProperty("门店详细地址")
|
||||||
private String shopAddress;
|
private String shopAddress;
|
||||||
|
@ApiModelProperty("抖音核销手机号")
|
||||||
|
private String dyMobile;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user