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