update 优化 调用toAjax时的冗余三元操作符

This commit is contained in:
疯狂的狮子Li
2022-10-29 17:38:05 +08:00
parent 3e2f154907
commit 0995b5e821
6 changed files with 15 additions and 15 deletions

View File

@@ -46,7 +46,7 @@ public class TestBatchController extends BaseController {
testDemo.setValue("测试新增");
list.add(testDemo);
}
return toAjax(testDemoMapper.insertBatch(list) ? 1 : 0);
return toAjax(testDemoMapper.insertBatch(list));
}
/**
@@ -73,7 +73,7 @@ public class TestBatchController extends BaseController {
testDemo.setId(null);
}
}
return toAjax(testDemoMapper.insertOrUpdateBatch(list) ? 1 : 0);
return toAjax(testDemoMapper.insertOrUpdateBatch(list));
}
/**

View File

@@ -118,7 +118,7 @@ public class TestDemoController extends BaseController {
// 使用校验工具对标 @Validated(AddGroup.class) 注解
// 用于在非 Controller 的地方校验对象
ValidatorUtils.validate(bo, AddGroup.class);
return toAjax(iTestDemoService.insertByBo(bo) ? 1 : 0);
return toAjax(iTestDemoService.insertByBo(bo));
}
/**
@@ -129,7 +129,7 @@ public class TestDemoController extends BaseController {
@RepeatSubmit
@PutMapping()
public R<Void> edit(@Validated(EditGroup.class) @RequestBody TestDemoBo bo) {
return toAjax(iTestDemoService.updateByBo(bo) ? 1 : 0);
return toAjax(iTestDemoService.updateByBo(bo));
}
/**
@@ -141,6 +141,6 @@ public class TestDemoController extends BaseController {
@Log(title = "测试单表", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public R<Void> remove(@NotEmpty(message = "主键不能为空") @PathVariable Long[] ids) {
return toAjax(iTestDemoService.deleteWithValidByIds(Arrays.asList(ids), true) ? 1 : 0);
return toAjax(iTestDemoService.deleteWithValidByIds(Arrays.asList(ids), true));
}
}

View File

@@ -76,7 +76,7 @@ public class TestTreeController extends BaseController {
@RepeatSubmit
@PostMapping()
public R<Void> add(@Validated(AddGroup.class) @RequestBody TestTreeBo bo) {
return toAjax(iTestTreeService.insertByBo(bo) ? 1 : 0);
return toAjax(iTestTreeService.insertByBo(bo));
}
/**
@@ -87,7 +87,7 @@ public class TestTreeController extends BaseController {
@RepeatSubmit
@PutMapping()
public R<Void> edit(@Validated(EditGroup.class) @RequestBody TestTreeBo bo) {
return toAjax(iTestTreeService.updateByBo(bo) ? 1 : 0);
return toAjax(iTestTreeService.updateByBo(bo));
}
/**
@@ -99,6 +99,6 @@ public class TestTreeController extends BaseController {
@Log(title = "测试树表", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public R<Void> remove(@NotEmpty(message = "主键不能为空") @PathVariable Long[] ids) {
return toAjax(iTestTreeService.deleteWithValidByIds(Arrays.asList(ids), true) ? 1 : 0);
return toAjax(iTestTreeService.deleteWithValidByIds(Arrays.asList(ids), true));
}
}