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
92ad1908
Commit
92ad1908
authored
Sep 08, 2020
by
hezhen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master-tiande' into dev-tiande
parents
ddc0795a
dd14fd05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
TourGoodAdminController.java
...xfc/platform/tour/rest/admin/TourGoodAdminController.java
+2
-5
No files found.
xx-tour/xx-tour-server/src/main/java/com/xxfc/platform/tour/rest/admin/TourGoodAdminController.java
View file @
92ad1908
...
...
@@ -12,14 +12,12 @@ import com.xxfc.platform.tour.dto.TourGoodDTO;
import
com.xxfc.platform.tour.entity.TourGood
;
import
com.xxfc.platform.tour.vo.TourGoodDetailVo
;
import
io.swagger.annotations.ApiOperation
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
@RestController
@RequestMapping
(
"good"
)
@IgnoreClientToken
@Slf4j
public
class
TourGoodAdminController
extends
BaseController
<
TourGoodBiz
,
TourGood
>
implements
UserRestInterface
{
@Autowired
...
...
@@ -34,10 +32,9 @@ public class TourGoodAdminController extends BaseController<TourGoodBiz, TourGoo
}
@ApiOperation
(
"后台查询旅游路线列表"
)
@RequestMapping
(
value
=
"/admin/goodList"
,
method
=
RequestMethod
.
GE
T
)
public
ObjectRestResponse
<
TourGood
>
goodList
(
GoodSearchDTO
dto
)
{
@RequestMapping
(
value
=
"/admin/goodList"
,
method
=
RequestMethod
.
POS
T
)
public
ObjectRestResponse
<
TourGood
>
goodList
(
@RequestBody
GoodSearchDTO
dto
)
{
setPowerData
(
dto
,
true
);
log
.
info
(
"GoodSearchDTO"
,
dto
);
return
ObjectRestResponse
.
succ
(
baseBiz
.
getAll
(
dto
));
}
...
...
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