Commit b1141f02 authored by libin's avatar libin

Merge branch 'luck_draw_feature' into dev

parents 89977c0e 73df9c47
...@@ -80,6 +80,10 @@ public class Banner { ...@@ -80,6 +80,10 @@ public class Banner {
@ApiModelProperty(value = "跳转链接") @ApiModelProperty(value = "跳转链接")
private String url; private String url;
@Column(name = "ios_url")
@ApiModelProperty(value = "ios跳转地址")
private String iosUrl;
/** /**
* 是否删除,0否,1是 * 是否删除,0否,1是
*/ */
......
...@@ -24,6 +24,8 @@ public class BannerVo { ...@@ -24,6 +24,8 @@ public class BannerVo {
*/ */
private String url; private String url;
private String iosUrl;
/** /**
* seo html标签优化 * seo html标签优化
*/ */
......
...@@ -31,6 +31,7 @@ public class BannerBiz extends BaseBiz<BannerMapper,Banner> { ...@@ -31,6 +31,7 @@ public class BannerBiz extends BaseBiz<BannerMapper,Banner> {
bannerVo.setTitle(banner.getTitle()); bannerVo.setTitle(banner.getTitle());
bannerVo.setId(banner.getId()); bannerVo.setId(banner.getId());
bannerVo.setAlt(banner.getAlt()); bannerVo.setAlt(banner.getAlt());
bannerVo.setIosUrl(banner.getIosUrl());
bannerVos.add(bannerVo); bannerVos.add(bannerVo);
}); });
return bannerVos; return bannerVos;
......
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