加载失败日志再发送

This commit is contained in:
zhangqinbin
2022-01-14 16:14:25 +08:00
parent a07e79eb7e
commit 26f9c60f5b

View File

@ -129,7 +129,7 @@ public class CrypConfigureController{
*/
@ApiOperation("加载失败日志再发送")
@PostMapping("/errorLogsGoToCryp")
public BaseResponse<Boolean> errorLogsGoToCryp(@RequestBody BlockChainLogVo vo) {
public BaseResponse<Boolean> errorLogsGoToCryp(@RequestBody(required = false) BlockChainLogVo vo) {
return BaseResponse.success(this.iCrypConfigureService.errorLogsGoToCryp(vo));
}