add destroyAllByExample

This commit is contained in:
Timi
2026-01-15 11:20:53 +08:00
parent 7ac4cdae56
commit fd7bb73f5c
6 changed files with 60 additions and 5 deletions
@@ -41,9 +41,4 @@ public class RawSQLProvider extends SQLProvider {
.collect(Collectors.joining(" AND "));
return "SELECT %s FROM `%s` WHERE %s".formatted(meta.selectAllClause, meta.table, conditionClause);
}
@Override
public String deleteAllByExample(Object entity) {
return super.deleteAllByExample(entity);
}
}