You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
413 B
18 lines
413 B
|
|
|
|
import 'dart:async'; |
|
|
|
import 'package:floor/floor.dart'; |
|
import 'package:flutter/cupertino.dart'; |
|
import 'package:huixiang/im/database/message_dao.dart'; |
|
import 'package:huixiang/im/database/message.dart'; |
|
import 'package:sqflite/sqflite.dart' as sqflite; |
|
|
|
part 'hx_database.g.dart'; |
|
|
|
@Database(version: 1, entities: [Message]) |
|
abstract class HxDatabase extends FloorDatabase { |
|
|
|
MessageDao get messageDao; |
|
|
|
}
|
|
|