|
@@ -117,7 +117,8 @@ public class SecondTradeRecordController {
|
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "tradeId", value = "交易id", dataType = "Integer", paramType = "query", required = true),
|
|
@ApiImplicitParam(name = "tradeId", value = "交易id", dataType = "Integer", paramType = "query", required = true),
|
|
|
@ApiImplicitParam(name = "type", value = "1-交易成功 2-交易失败", dataType = "Integer", paramType = "query", required = true),
|
|
@ApiImplicitParam(name = "type", value = "1-交易成功 2-交易失败", dataType = "Integer", paramType = "query", required = true),
|
|
|
- @ApiImplicitParam(name = "evaluate", value = "评价", dataType = "String", paramType = "query")})
|
|
|
|
|
|
|
+ @ApiImplicitParam(name = "evaluate", value = "评价", dataType = "String", paramType = "query"),
|
|
|
|
|
+ @ApiImplicitParam(name = "rating", value = "评分", dataType = "Integer", paramType = "query")})
|
|
|
@GetMapping("/tradeCompleteConfirm")
|
|
@GetMapping("/tradeCompleteConfirm")
|
|
|
public R<Boolean> tradeCompleteConfirm(@RequestParam int tradeId, @RequestParam int type, String evaluate, Integer rating) throws Exception {
|
|
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);
|
|
log.info("SecondTradeRecordController.tradeCompleteConfirm?tradeId={}, type={}, evaluate={}, rating={}", tradeId, type, evaluate, rating);
|