乐观锁、逻辑删除功能

This commit is contained in:
dataprince 2024-01-08 16:03:01 +08:00
parent f3e2afcaa3
commit fe75716c7f
4 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ import com.ruoyi.common.orm.core.page.TableDataInfo;
* 客户主表Controller
*
* @author 数据小王子
* 2023-12-06
* 2024-01-06
*/
@Validated
@RequiredArgsConstructor
@ -94,7 +94,7 @@ public class CustomerController extends BaseController
{
Boolean updated = customerService.update(customerBo);
if (!updated) {
R.fail("修改客户主表记录失败!");
return R.fail("修改客户主表记录失败!");
}
return R.ok();
}
@ -109,7 +109,7 @@ public class CustomerController extends BaseController
{
boolean deleted = customerService.deleteByIds(customerIds);
if (!deleted) {
R.fail("删除客户主表记录失败!");
return R.fail("删除客户主表记录失败!");
}
return R.ok();
}

View File

@ -9,7 +9,7 @@ import com.ruoyi.mf.domain.Goods;
* 客户主表Mapper接口
*
* @author 数据小王子
* 2023-12-06
* 2024-01-06
*/
@Mapper
public interface CustomerMapper extends BaseMapper<Customer>

View File

@ -5,10 +5,10 @@ import org.apache.ibatis.annotations.Mapper;
import com.ruoyi.mf.domain.Goods;
/**
* 商品子Mapper接口
* 商品子Mapper接口
*
* @author 数据小王子
* 2023-12-06
* 2024-01-06
*/
@Mapper
public interface GoodsMapper extends BaseMapper<Goods>

View File

@ -11,7 +11,7 @@ import com.ruoyi.common.orm.core.page.TableDataInfo;
* 客户主表Service接口
*
* @author 数据小王子
* 2023-12-06
* 2024-01-06
*/
public interface ICustomerService extends IBaseService<Customer>
{