提交 3bb112ba authored 作者: 刘海泉's avatar 刘海泉

Merge remote-tracking branch 'origin/v30.2_break_contract_20241021' into test_jdk17

...@@ -149,7 +149,7 @@ public class PerformanceSdkFeignController { ...@@ -149,7 +149,7 @@ public class PerformanceSdkFeignController {
//数媒宝同步异常上报信息 //数媒宝同步异常上报信息
@PostMapping("clx-performance/feign/sdk/smbSyncExceptionReportInfo") @PostMapping("/smbSyncExceptionReportInfo")
Result<String> smbSyncExceptionReportInfo(@RequestBody @Validated SmbSyncExceptionReportInfoAction action){ Result<String> smbSyncExceptionReportInfo(@RequestBody @Validated SmbSyncExceptionReportInfoAction action){
log.info("数媒宝同步异常上报信息开始,请求参数:{}", JSON.toJSONString(action)); log.info("数媒宝同步异常上报信息开始,请求参数:{}", JSON.toJSONString(action));
Result<String> result = orderChildExceptionReportService.smbSyncExceptionReportInfo(action); Result<String> result = orderChildExceptionReportService.smbSyncExceptionReportInfo(action);
...@@ -157,14 +157,14 @@ public class PerformanceSdkFeignController { ...@@ -157,14 +157,14 @@ public class PerformanceSdkFeignController {
return result; return result;
} }
//数媒宝同步异常上报结果 //数媒宝同步异常上报结果
@PostMapping("clx-performance/feign/sdk/smbSyncExceptionReportResult") @PostMapping("/smbSyncExceptionReportResult")
Result<Object> smbSyncExceptionReportResult(@RequestBody @Validated SmbSyncExceptionReportResultAction action){ Result<Object> smbSyncExceptionReportResult(@RequestBody @Validated SmbSyncExceptionReportResultAction action){
log.info("数媒宝同步异常上报结果开始,请求参数:{}", JSON.toJSONString(action)); log.info("数媒宝同步异常上报结果开始,请求参数:{}", JSON.toJSONString(action));
return orderChildExceptionReportService.smbSyncExceptionReportResult(action); return orderChildExceptionReportService.smbSyncExceptionReportResult(action);
} }
//数媒宝撤销异常上报 //数媒宝撤销异常上报
@PostMapping("clx-performance/feign/sdk/smbWithdrawExceptionReport") @PostMapping("/smbWithdrawExceptionReport")
Result<Object> smbWithdrawExceptionReport(@RequestBody @Validated SmbWithdrawExceptionReportAction action){ Result<Object> smbWithdrawExceptionReport(@RequestBody @Validated SmbWithdrawExceptionReportAction action){
log.info("数媒宝撤销异常上报开始,请求参数:{}", JSON.toJSONString(action)); log.info("数媒宝撤销异常上报开始,请求参数:{}", JSON.toJSONString(action));
return orderChildExceptionReportService.smbWithdrawExceptionReport(action); return orderChildExceptionReportService.smbWithdrawExceptionReport(action);
...@@ -173,7 +173,7 @@ public class PerformanceSdkFeignController { ...@@ -173,7 +173,7 @@ public class PerformanceSdkFeignController {
//马上来供应链同步异常上报信息 //马上来供应链同步异常上报信息
@PostMapping("clx-performance/feign/sdk/mslSyncExceptionReportInfo") @PostMapping("/mslSyncExceptionReportInfo")
Result<String> mslSyncExceptionReportInfo(@RequestBody @Validated MslSyncExceptionReportInfoAction action){ Result<String> mslSyncExceptionReportInfo(@RequestBody @Validated MslSyncExceptionReportInfoAction action){
log.info("马上来供应链同步异常上报信息开始,请求参数:{}", JSON.toJSONString(action)); log.info("马上来供应链同步异常上报信息开始,请求参数:{}", JSON.toJSONString(action));
Result<String> result = orderChildExceptionReportService.mslSyncExceptionReportInfo(action); Result<String> result = orderChildExceptionReportService.mslSyncExceptionReportInfo(action);
...@@ -183,14 +183,14 @@ public class PerformanceSdkFeignController { ...@@ -183,14 +183,14 @@ public class PerformanceSdkFeignController {
} }
//马上来供应链同步异常上报结果 //马上来供应链同步异常上报结果
@PostMapping("clx-performance/feign/sdk/mslSyncExceptionReportResult") @PostMapping("/mslSyncExceptionReportResult")
Result<Object> mslSyncExceptionReportResult(@RequestBody @Validated MslSyncExceptionReportResultAction action){ Result<Object> mslSyncExceptionReportResult(@RequestBody @Validated MslSyncExceptionReportResultAction action){
log.info("马上来供应链同步异常上报结果开始,请求参数:{}", JSON.toJSONString(action)); log.info("马上来供应链同步异常上报结果开始,请求参数:{}", JSON.toJSONString(action));
return orderChildExceptionReportService.mslSyncExceptionReportResult(action); return orderChildExceptionReportService.mslSyncExceptionReportResult(action);
} }
//马上来供应链撤销异常上报 //马上来供应链撤销异常上报
@PostMapping("clx-performance/feign/sdk/mslWithdrawExceptionReport") @PostMapping("/mslWithdrawExceptionReport")
Result<Object> mslWithdrawExceptionReport(@RequestBody @Validated MslWithdrawExceptionReportAction action){ Result<Object> mslWithdrawExceptionReport(@RequestBody @Validated MslWithdrawExceptionReportAction action){
log.info("马上来供应链撤销异常上报开始,请求参数:{}", JSON.toJSONString(action)); log.info("马上来供应链撤销异常上报开始,请求参数:{}", JSON.toJSONString(action));
return orderChildExceptionReportService.mslWithdrawExceptionReport(action); return orderChildExceptionReportService.mslWithdrawExceptionReport(action);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论