MyBatisPlus删除逻辑
Posted 最小的帆也能远航
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatisPlus删除逻辑相关的知识,希望对你有一定的参考价值。
/**
* 批量/单个删除数据
*
* @param id 主键结合
* @return 删除结果
*/
@ApiOperation("删除企业部门")
@DeleteMapping
public R delete(@RequestParam("id") Serializable id) {
//判断
int count = companyRosterService.count(new LambdaQueryWrapper<CompanyRosterEntity>()
.eq(CompanyRosterEntity::getDeptId, id));
if(count>0){
return failed("不能删除");
}
return success(companyDeptService.removeById(id));
}
以上是关于MyBatisPlus删除逻辑的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot 全家桶 MyBatisPlus(六)软删除(逻辑删除)
spring boot项目自定义数据源,mybatisplus分页逻辑删除无效解决方法