| 123456789101112131415161718192021222324252627282930 |
- import 'package:bbyyy/generated/json/system_information_bean_list_entity.g.dart';
- import 'package:bbyyy/generated/json/base/json_field.dart';
- @JsonSerializable()
- class SystemInformationBeanListEntity {
- SystemInformationBeanListEntity();
- factory SystemInformationBeanListEntity.fromJson(Map<String, dynamic> json) => $SystemInformationBeanListEntityFromJson(json);
- Map<String, dynamic> toJson() => $SystemInformationBeanListEntityToJson(this);
- String type;
- SystemInformationBeanListContent content;
- }
- @JsonSerializable()
- class SystemInformationBeanListContent {
- SystemInformationBeanListContent();
- factory SystemInformationBeanListContent.fromJson(Map<String, dynamic> json) => $SystemInformationBeanListContentFromJson(json);
- Map<String, dynamic> toJson() => $SystemInformationBeanListContentToJson(this);
- @JSONField(name: "start_time")
- String startTime;
- String content;
- }
|