|
|
@@ -119,9 +119,9 @@ public class SecondTradeRecordController {
|
|
|
@ApiImplicitParam(name = "type", value = "1-交易成功 2-交易失败", dataType = "Integer", paramType = "query", required = true),
|
|
|
@ApiImplicitParam(name = "evaluate", value = "评价", dataType = "String", paramType = "query")})
|
|
|
@GetMapping("/tradeCompleteConfirm")
|
|
|
- public R<Boolean> tradeCompleteConfirm(@RequestParam int tradeId, @RequestParam int type, String evaluate) throws Exception {
|
|
|
- log.info("SecondTradeRecordController.tradeCompleteConfirm?tradeId={}, type={}, evaluate={}", tradeId, type, evaluate);
|
|
|
- return R.data(secondTradeRecordService.tradeCompleteConfirm(tradeId, type, evaluate));
|
|
|
+ public R<Boolean> tradeCompleteConfirm(@RequestParam int tradeId, @RequestParam int type, String evaluate, Integer rating) throws Exception {
|
|
|
+ log.info("SecondTradeRecordController.tradeCompleteConfirm?tradeId={}, type={}, evaluate={}, rating={}", tradeId, type, evaluate, rating);
|
|
|
+ return R.data(secondTradeRecordService.tradeCompleteConfirm(tradeId, type, evaluate, rating));
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取用户交易确认信息")
|