menu
simple_orm package
documentation
base_dao.dart
BaseDao<T>
getById method
getById method
dark_mode
light_mode
getById
method
Future
<
T?
>
getById
(
dynamic
id
)
根据主键查询数据
Implementation
Future<T?> getById(dynamic id) async => null;
simple_orm package
documentation
base_dao
BaseDao<T>
getById method
BaseDao class