Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cash-loan-flow-boss
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QG
cash-loan-flow-boss
Commits
19e4e3b4
Commit
19e4e3b4
authored
Aug 16, 2019
by
suntao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口注释
parent
a0142d4b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
ChannelConfController.java
...lowboss/api/channel/controller/ChannelConfController.java
+13
-2
OrderController.java
...ashloanflowboss/api/order/controller/OrderController.java
+1
-1
No files found.
src/main/java/cn/quantgroup/cashloanflowboss/api/channel/controller/ChannelConfController.java
View file @
19e4e3b4
...
...
@@ -25,9 +25,9 @@ public class ChannelConfController {
/**
* 查询渠道列表
* 查询渠道列表
,如果是渠道角色登陆,只能查询自己渠道
*
* @param channelId
在接受参数时,必须放到第一个参数位置
* @param channelId
* @param pageNumber
* @param pageSize
* @return
...
...
@@ -38,6 +38,12 @@ public class ChannelConfController {
return
Result
.
buildSuccess
(
channelConfService
.
getChannelInfo
(
pageNumber
,
pageSize
,
channelId
));
}
/**
* 查询单个渠道配置
* 去过是渠道用户,只能查自己,查询条件置灰
* @param channelId
* @return
*/
@ChannelIdInit
@CheckChannelRole
@GetMapping
(
"/cfg/info"
)
...
...
@@ -46,6 +52,11 @@ public class ChannelConfController {
}
/**
* 修改渠道配置,如果是渠道角色登陆 只能修改自己渠道信息
* @param channelConfVo
* @return
*/
@CheckChannelRole
(
isObjParam
=
true
,
paramClazz
=
ChannelConfVo
.
class
)
@PostMapping
(
"/cfg/info"
)
public
Result
editChannelConfInfo
(
@RequestBody
@Valid
ChannelConfVo
channelConfVo
)
{
...
...
src/main/java/cn/quantgroup/cashloanflowboss/api/order/controller/OrderController.java
View file @
19e4e3b4
...
...
@@ -28,7 +28,7 @@ public class OrderController {
private
OrderService
orderService
;
/**
* 订单查询接口
* 订单查询
列表
接口
*
* @param channelId
* @param channelOrderNumber
...
...
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