system_information_bean_list_entity.dart 895 B

123456789101112131415161718192021222324252627282930
  1. import 'package:bbyyy/generated/json/system_information_bean_list_entity.g.dart';
  2. import 'package:bbyyy/generated/json/base/json_field.dart';
  3. @JsonSerializable()
  4. class SystemInformationBeanListEntity {
  5. SystemInformationBeanListEntity();
  6. factory SystemInformationBeanListEntity.fromJson(Map<String, dynamic> json) => $SystemInformationBeanListEntityFromJson(json);
  7. Map<String, dynamic> toJson() => $SystemInformationBeanListEntityToJson(this);
  8. String type;
  9. SystemInformationBeanListContent content;
  10. }
  11. @JsonSerializable()
  12. class SystemInformationBeanListContent {
  13. SystemInformationBeanListContent();
  14. factory SystemInformationBeanListContent.fromJson(Map<String, dynamic> json) => $SystemInformationBeanListContentFromJson(json);
  15. Map<String, dynamic> toJson() => $SystemInformationBeanListContentToJson(this);
  16. @JSONField(name: "start_time")
  17. String startTime;
  18. String content;
  19. }