add BaseMapper.updateSelective

This commit is contained in:
Timi
2025-11-02 20:59:27 +08:00
parent 278bf7c59a
commit 1688666dca
2 changed files with 41 additions and 1 deletions

View File

@ -93,6 +93,9 @@ public interface BaseMapper<T, P> {
@UpdateProvider(type = SQLProvider.class, method = "update")
void update(T t);
@UpdateProvider(type = SQLProvider.class, method = "updateSelective")
void updateSelective(T t);
/**
* 软删除
*