Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
youjj
cloud-platform
Commits
b1141f02
Commit
b1141f02
authored
Dec 12, 2019
by
libin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'luck_draw_feature' into dev
parents
89977c0e
73df9c47
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
Banner.java
...pi/src/main/java/com/xxfc/platform/app/entity/Banner.java
+4
-0
BannerVo.java
...c/main/java/com/xxfc/platform/app/entity/vo/BannerVo.java
+2
-0
BannerBiz.java
...er/src/main/java/com/xxfc/platform/app/biz/BannerBiz.java
+1
-0
No files found.
xx-app/xx-app-api/src/main/java/com/xxfc/platform/app/entity/Banner.java
View file @
b1141f02
...
...
@@ -80,6 +80,10 @@ public class Banner {
@ApiModelProperty
(
value
=
"跳转链接"
)
private
String
url
;
@Column
(
name
=
"ios_url"
)
@ApiModelProperty
(
value
=
"ios跳转地址"
)
private
String
iosUrl
;
/**
* 是否删除,0否,1是
*/
...
...
xx-app/xx-app-api/src/main/java/com/xxfc/platform/app/entity/vo/BannerVo.java
View file @
b1141f02
...
...
@@ -24,6 +24,8 @@ public class BannerVo {
*/
private
String
url
;
private
String
iosUrl
;
/**
* seo html标签优化
*/
...
...
xx-app/xx-app-server/src/main/java/com/xxfc/platform/app/biz/BannerBiz.java
View file @
b1141f02
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment