【代码优化】SYSTEM:移除阿里云、腾讯云 maven 依赖,直接 HTTP 对接

This commit is contained in:
YunaiV
2024-08-09 22:13:01 +08:00
parent a042a4c366
commit 4139769131
18 changed files with 669 additions and 502 deletions

View File

@@ -185,10 +185,6 @@ public interface BaseMapperX<T> extends MPJBaseMapper<T> {
return Db.updateBatchById(entities, size);
}
default boolean insertOrUpdate(T entity) {
return Db.saveOrUpdate(entity);
}
default Boolean insertOrUpdateBatch(Collection<T> collection) {
return Db.saveOrUpdateBatch(collection);
}