记得上下班打卡 | git大法好,push需谨慎

Commit cd75d919 authored by jiangxiulong's avatar jiangxiulong

Merge remote-tracking branch 'origin/dev' into dev

parents fc901360 c318f074
...@@ -123,6 +123,18 @@ public class PayController { ...@@ -123,6 +123,18 @@ public class PayController {
return ResponseDto.success(respDto); return ResponseDto.success(respDto);
} }
@GetMapping("/thirdCheckOrder")
@ApiOperation("三方订单查询")
@ApiResponse(code = 200, message = "接口返回对象参数")
@ApiImplicitParams({
@ApiImplicitParam(type = "form", required = true, dataType = "String", name = "code", value = "", example = "PAY202107131522368438531155")
})
@ResponseBody
public ResponseDto<DragonPayOrderQueryRespDto> thirdCheckOrder(@RequestParam(value = "code") @NotNull(message = "支付编号不能为空!") String code){
DragonPayOrderQueryRespDto respDto = dragonOrdersService.checkOrderStatusByCode(code);
return ResponseDto.success(respDto);
}
@GetMapping("/manulNotify") @GetMapping("/manulNotify")
@ApiOperation("手动通知商户") @ApiOperation("手动通知商户")
@ApiResponse(code = 200, message = "接口返回对象参数") @ApiResponse(code = 200, message = "接口返回对象参数")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment