新增 token自动提交

This commit is contained in:
2025-02-21 19:24:59 +08:00
parent 7fdaf42695
commit 3f042fec78
5 changed files with 37 additions and 4 deletions

View File

@@ -22,6 +22,9 @@ abstract class DataBase {
// 执行删除操作
Future<void> delete(String table, dynamic condition);
//查询数量
Future<int> count(String tbale, {dynamic condition});
}
class DataBaseConfig {