|
@@ -54,8 +54,9 @@ public class WebAuditController {
|
|
|
|
|
|
@ApiOperation("平台处理审核退款等埋点")
|
|
|
@PostMapping("/platformAuditRefundTrack")
|
|
|
- public Integer platformAuditRefundTrack(@RequestBody WebAudit webAudit) {
|
|
|
- return webAuditService.platformAuditRefundTrack(webAudit);
|
|
|
+ public R platformAuditRefundTrack(@RequestBody WebAudit webAudit) {
|
|
|
+ Integer i = webAuditService.platformAuditRefundTrack(webAudit);
|
|
|
+ return R.data(i);
|
|
|
}
|
|
|
|
|
|
}
|