记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
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
董敬伟
liquidnet-bus-v1
Commits
8fe4dcb6
Commit
8fe4dcb6
authored
May 13, 2022
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
禁用接口
parent
8ed9cf89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
25 deletions
+25
-25
TempController.java
...om/liquidnet/service/kylin/controller/TempController.java
+25
-25
No files found.
liquidnet-bus-service/liquidnet-service-kylin/liquidnet-service-kylin-impl/src/main/java/com/liquidnet/service/kylin/controller/TempController.java
View file @
8fe4dcb6
...
@@ -21,21 +21,21 @@ public class TempController {
...
@@ -21,21 +21,21 @@ public class TempController {
@Autowired
@Autowired
private
IKylinTempService
kylinTempService
;
private
IKylinTempService
kylinTempService
;
//
@PostMapping
(
"tempRedis"
)
//
@PostMapping("tempRedis")
@ApiOperation
(
"设置需要填写补偿快递信息的订单id"
)
//
@ApiOperation("设置需要填写补偿快递信息的订单id")
@ApiImplicitParams
({
//
@ApiImplicitParams({
@ApiImplicitParam
(
type
=
"query"
,
dataType
=
"String"
,
name
=
"orderId"
,
value
=
"订单id"
,
required
=
true
),
//
@ApiImplicitParam(type = "query", dataType = "String", name = "orderId", value = "订单id", required = true),
})
//
})
public
ResponseDto
<
Boolean
>
setTempRedis
(
String
orderId
)
{
//
public ResponseDto<Boolean> setTempRedis(String orderId) {
return
kylinTempService
.
setWqRedis
(
orderId
);
//
return kylinTempService.setWqRedis(orderId);
}
//
}
//
@DeleteMapping
(
"tempRedis"
)
//
@DeleteMapping("tempRedis")
@ApiOperation
(
"删除需要填写补偿快递信息的订单id"
)
//
@ApiOperation("删除需要填写补偿快递信息的订单id")
@ApiImplicitParams
({
//
@ApiImplicitParams({
@ApiImplicitParam
(
type
=
"query"
,
dataType
=
"String"
,
name
=
"orderId"
,
value
=
"订单id"
,
required
=
true
),
//
@ApiImplicitParam(type = "query", dataType = "String", name = "orderId", value = "订单id", required = true),
})
//
})
public
ResponseDto
<
Boolean
>
delTempRedis
(
String
orderId
)
{
public
ResponseDto
<
Boolean
>
delTempRedis
(
String
orderId
)
{
return
kylinTempService
.
delWqRedis
(
orderId
);
return
kylinTempService
.
delWqRedis
(
orderId
);
}
}
...
@@ -55,14 +55,14 @@ public class TempController {
...
@@ -55,14 +55,14 @@ public class TempController {
return
kylinTempService
.
getWqTempExpress
(
orderId
);
return
kylinTempService
.
getWqTempExpress
(
orderId
);
}
}
@GetMapping
(
"sendMail"
)
//
@GetMapping("sendMail")
@ApiOperation
(
"发货万青订单"
)
//
@ApiOperation("发货万青订单")
@ApiImplicitParams
({
//
@ApiImplicitParams({
@ApiImplicitParam
(
type
=
"query"
,
dataType
=
"String"
,
name
=
"orderId"
,
value
=
"订单id"
,
required
=
true
),
//
@ApiImplicitParam(type = "query", dataType = "String", name = "orderId", value = "订单id", required = true),
@ApiImplicitParam
(
type
=
"query"
,
dataType
=
"String"
,
name
=
"mailNo"
,
value
=
"快递单号"
,
required
=
true
),
//
@ApiImplicitParam(type = "query", dataType = "String", name = "mailNo", value = "快递单号", required = true),
//
})
//
})
public
ResponseDto
<
Boolean
>
updateMailNo
(
String
orderId
,
String
mailNo
)
{
//
public ResponseDto<Boolean> updateMailNo(String orderId, String mailNo) {
return
kylinTempService
.
updateMailNo
(
orderId
,
mailNo
);
//
return kylinTempService.updateMailNo(orderId, mailNo);
}
//
}
}
}
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