Commit 18f7b881 authored by libin's avatar libin

营地海报背景

parent 238581a1
...@@ -73,4 +73,7 @@ public class CampsiteShopDetailDTO { ...@@ -73,4 +73,7 @@ public class CampsiteShopDetailDTO {
*/ */
private String logo; private String logo;
@ApiModelProperty(value = "海报背景")
private String posterBackground;
} }
...@@ -170,4 +170,6 @@ public class CampsiteShopAdminVO { ...@@ -170,4 +170,6 @@ public class CampsiteShopAdminVO {
*/ */
private List<CampsiteTagListVo> campsiteTagListVos; private List<CampsiteTagListVo> campsiteTagListVos;
@ApiModelProperty(value = "海报背景")
private String posterBackground;
} }
...@@ -97,4 +97,7 @@ public class CampsiteShopDetailVo { ...@@ -97,4 +97,7 @@ public class CampsiteShopDetailVo {
* 店铺logo * 店铺logo
*/ */
private String logo; private String logo;
@ApiModelProperty(value = "海报背景")
private String posterBackground;
} }
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
<!--根据id查询详情--> <!--根据id查询详情-->
<select id="findCampsiteShopDetailById" resultType="com.xxfc.platform.campsite.dto.CampsiteShopDetailDTO"> <select id="findCampsiteShopDetailById" resultType="com.xxfc.platform.campsite.dto.CampsiteShopDetailDTO">
select `name` as `name`,`province_name` as `provinceName`,`city_name` as `cityName`,`address` as `address`,`service_phone` as `phone`,`logo` as `logo`, select `name` as `name`,`province_name` as `provinceName`,`city_name` as `cityName`,`address` as `address`,`service_phone` as `phone`,`logo` as `logo`,`poster_background` as `posterBackground` ,
`content` as `content`,`configure` as `configure`,`longitude` as `longitude`,`latitude` as `latitude` from `campsite_shop` where `id`=#{id} `content` as `content`,`configure` as `configure`,`longitude` as `longitude`,`latitude` as `latitude` from `campsite_shop` where `id`=#{id}
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment