Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
rs-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
周健威
rs-cloud-platform
Commits
c6af1692
Commit
c6af1692
authored
Dec 02, 2020
by
unset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户信息修改
parent
370e621f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
BannerController.java
...yuns/platform/rs/website/controller/BannerController.java
+1
-1
ImageInformationController.java
...orm/rs/website/controller/ImageInformationController.java
+1
-1
IndustryApplicationInfoController.java
...website/controller/IndustryApplicationInfoController.java
+1
-1
IndustryApplicationTypeController.java
...website/controller/IndustryApplicationTypeController.java
+2
-2
NewsInfoController.java
...ns/platform/rs/website/controller/NewsInfoController.java
+1
-1
NewsTypeController.java
...ns/platform/rs/website/controller/NewsTypeController.java
+1
-1
No files found.
rs-website/rs-website-server/src/main/java/com/upyuns/platform/rs/website/controller/BannerController.java
View file @
c6af1692
...
@@ -21,7 +21,7 @@ public class BannerController extends BaseController<BannerBiz, Banner> {
...
@@ -21,7 +21,7 @@ public class BannerController extends BaseController<BannerBiz, Banner> {
return
baseBiz
.
selectList
(
bannerDto
);
return
baseBiz
.
selectList
(
bannerDto
);
}
}
@GetMapping
(
value
=
"getAll"
)
@GetMapping
(
value
=
"
/app/unauth/
getAll"
)
public
ObjectRestResponse
getAll
()
{
public
ObjectRestResponse
getAll
()
{
return
baseBiz
.
getAll
(
1
);
return
baseBiz
.
getAll
(
1
);
}
}
...
...
rs-website/rs-website-server/src/main/java/com/upyuns/platform/rs/website/controller/ImageInformationController.java
View file @
c6af1692
...
@@ -23,7 +23,7 @@ public class ImageInformationController extends BaseController<ImageInformationB
...
@@ -23,7 +23,7 @@ public class ImageInformationController extends BaseController<ImageInformationB
return
baseBiz
.
addUpdate
(
imageInformation
);
return
baseBiz
.
addUpdate
(
imageInformation
);
}
}
@GetMapping
(
value
=
"getAll"
)
@GetMapping
(
value
=
"
/app/unauth/
getAll"
)
public
ObjectRestResponse
getAll
()
{
public
ObjectRestResponse
getAll
()
{
return
ObjectRestResponse
.
succ
(
baseBiz
.
getAll
());
return
ObjectRestResponse
.
succ
(
baseBiz
.
getAll
());
}
}
...
...
rs-website/rs-website-server/src/main/java/com/upyuns/platform/rs/website/controller/IndustryApplicationInfoController.java
View file @
c6af1692
...
@@ -21,7 +21,7 @@ public class IndustryApplicationInfoController extends BaseController<IndustryAp
...
@@ -21,7 +21,7 @@ public class IndustryApplicationInfoController extends BaseController<IndustryAp
return
baseBiz
.
selectList
(
industryApplicationInfoDto
);
return
baseBiz
.
selectList
(
industryApplicationInfoDto
);
}
}
@GetMapping
(
value
=
"getAll"
)
@GetMapping
(
value
=
"
/app/unauth/
getAll"
)
public
ObjectRestResponse
getAll
()
{
public
ObjectRestResponse
getAll
()
{
return
baseBiz
.
getAllIndexShow
();
return
baseBiz
.
getAllIndexShow
();
}
}
...
...
rs-website/rs-website-server/src/main/java/com/upyuns/platform/rs/website/controller/IndustryApplicationTypeController.java
View file @
c6af1692
...
@@ -21,13 +21,13 @@ public class IndustryApplicationTypeController extends BaseController<IndustryAp
...
@@ -21,13 +21,13 @@ public class IndustryApplicationTypeController extends BaseController<IndustryAp
return
baseBiz
.
selectList
(
industryApplicationTypeDto
);
return
baseBiz
.
selectList
(
industryApplicationTypeDto
);
}
}
@GetMapping
(
value
=
"getAll"
)
@GetMapping
(
value
=
"
/app/unauth/
getAll"
)
public
ObjectRestResponse
getAll
(
Integer
indexShow
)
{
public
ObjectRestResponse
getAll
(
Integer
indexShow
)
{
return
baseBiz
.
getAll
(
indexShow
);
return
baseBiz
.
getAll
(
indexShow
);
}
}
@GetMapping
(
value
=
"getDetail"
)
@GetMapping
(
value
=
"
/app/unauth/
getDetail"
)
public
ObjectRestResponse
getDetail
(
Integer
id
)
{
public
ObjectRestResponse
getDetail
(
Integer
id
)
{
return
baseBiz
.
getDetail
(
id
);
return
baseBiz
.
getDetail
(
id
);
}
}
...
...
rs-website/rs-website-server/src/main/java/com/upyuns/platform/rs/website/controller/NewsInfoController.java
View file @
c6af1692
...
@@ -21,7 +21,7 @@ public class NewsInfoController extends BaseController<NewsInfoBiz, NewsInfo> {
...
@@ -21,7 +21,7 @@ public class NewsInfoController extends BaseController<NewsInfoBiz, NewsInfo> {
return
baseBiz
.
selectList
(
newsInfoDto
);
return
baseBiz
.
selectList
(
newsInfoDto
);
}
}
@GetMapping
(
value
=
"getAll"
)
@GetMapping
(
value
=
"
/app/unauth/
getAll"
)
public
ObjectRestResponse
getAll
()
{
public
ObjectRestResponse
getAll
()
{
return
baseBiz
.
getAll
();
return
baseBiz
.
getAll
();
}
}
...
...
rs-website/rs-website-server/src/main/java/com/upyuns/platform/rs/website/controller/NewsTypeController.java
View file @
c6af1692
...
@@ -16,7 +16,7 @@ public class NewsTypeController extends BaseController<NewsTypeBiz, NewsType> {
...
@@ -16,7 +16,7 @@ public class NewsTypeController extends BaseController<NewsTypeBiz, NewsType> {
return
baseBiz
.
add
(
newsType
);
return
baseBiz
.
add
(
newsType
);
}
}
@GetMapping
(
value
=
"getAll"
)
@GetMapping
(
value
=
"
/app/unauth/
getAll"
)
public
ObjectRestResponse
getAll
(
Integer
indexShow
)
{
public
ObjectRestResponse
getAll
(
Integer
indexShow
)
{
return
baseBiz
.
getAll
(
indexShow
);
return
baseBiz
.
getAll
(
indexShow
);
}
}
...
...
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