完成 FileConfig 的前端模块

This commit is contained in:
YunaiV
2022-03-16 00:21:49 +08:00
parent 18a5c46284
commit 659023bb35
10 changed files with 411 additions and 17 deletions

View File

@ -80,4 +80,7 @@ public interface BaseMapperX<T> extends BaseMapper<T> {
entities.forEach(this::insert);
}
default void updateBatch(T update) {
update(update, new QueryWrapper<>());
}
}