Line data Source code
1 : import 'package:hive/hive.dart'; 2 : 3 : part 'page_user_visit_entity.g.dart'; 4 : 5 : @HiveType(typeId: 9) 6 : class HelperGroupUserVisitEntity { 7 : 8 : @HiveField(0) 9 : String pageId; 10 : 11 : @HiveField(1) 12 : String helperGroupId; 13 : 14 2 : HelperGroupUserVisitEntity({this.pageId, this.helperGroupId}); 15 : }