mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
16 lines
299 B
Dart
16 lines
299 B
Dart
import 'package:PiliPlus/pages/common/common_list_controller.dart';
|
|
|
|
abstract class LogController<R, T> extends CommonListController<R, T> {
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
queryData();
|
|
}
|
|
|
|
String get title;
|
|
|
|
T get header;
|
|
|
|
List<(int, String)> getFlexAndText(T item);
|
|
}
|