删除
This commit is contained in:
parent
c11454b75d
commit
0a226a06c8
|
|
@ -1,20 +0,0 @@
|
|||
|
||||
import 'package:json_annotation/json_annotation.dart';
|
||||
|
||||
import 'EpgCategoryListBean.dart';
|
||||
|
||||
part 'HallEpgListBean.g.dart';
|
||||
|
||||
@JsonSerializable(explicitToJson: true)
|
||||
class HallEpgListBean {
|
||||
|
||||
|
||||
List<EpgCategoryListBean>? EpgCategoryList;
|
||||
|
||||
HallEpgListBean(this.EpgCategoryList);
|
||||
|
||||
|
||||
factory HallEpgListBean.fromJson(Map<String, dynamic> json) => _$HallEpgListBeanFromJson(json);
|
||||
Map<String, dynamic> toJson() => _$HallEpgListBeanToJson(this);
|
||||
|
||||
}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'HallEpgListBean.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
HallEpgListBean _$HallEpgListBeanFromJson(Map<String, dynamic> json) =>
|
||||
HallEpgListBean(
|
||||
(json['EpgCategoryList'] as List<dynamic>?)
|
||||
?.map((e) => EpgCategoryListBean.fromJson(e as Map<String, dynamic>))
|
||||
.toList(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$HallEpgListBeanToJson(HallEpgListBean instance) =>
|
||||
<String, dynamic>{
|
||||
'EpgCategoryList':
|
||||
instance.EpgCategoryList?.map((e) => e.toJson()).toList(),
|
||||
};
|
||||
Loading…
Reference in New Issue
Block a user