1.完成查看录像模块功能

2.完成录像页面播放视频功能
This commit is contained in:
2026-07-28 16:36:32 +08:00
parent a324825e8a
commit 9fca76f679
7 changed files with 660 additions and 1 deletions
+8
View File
@@ -45,6 +45,14 @@ class GetRecordListResModel {
};
}
enum RecordItemType {
file('file'),
directory('dir');
final String value;
const RecordItemType(this.value);
}
class RecordListItem {
String? name;
String? path;