| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import 'package:json_annotation/json_annotation.dart';
- part 'talks.g.dart';
- @JsonSerializable()
- class TalkBean {
- @JsonKey(name: 'id')
- late final String id;
- @JsonKey(name: 'taskId')
- String? taskId;
- @JsonKey(name: 'ssid')
- String? ssid;
- @JsonKey(name: 'audioUrl')
- String? audioUrl;
- @JsonKey(name: 'duration')
- double? duration;
- @JsonKey(name: 'characters')
- int? characters;
- @JsonKey(name: 'status')
- int? status;
- @JsonKey(name: 'title')
- String? title;
- @JsonKey(name: 'summary')
- String? summary;
- @JsonKey(name: 'createTime')
- String? createTime;
- @JsonKey(name: 'example')
- bool? isExample;
- TalkBean(
- {required this.id,
- this.taskId,
- this.ssid,
- this.audioUrl,
- this.duration,
- this.characters,
- this.status,
- this.title,
- this.summary,
- this.createTime,
- this.isExample});
- factory TalkBean.fromJson(Map<String, dynamic> json) =>
- _$TalkBeanFromJson(json);
- }
- class TalkStatus {
- TalkStatus._();
- //(0等待生成 1生成中,都处于生成中) 2成功 3失败 4未分析
- static int analysing = 0;
- static int waitAnalysis = 1;
- static int analysisSuccess = 2;
- static int analysisFail = 3;
- static int notAnalysis = 4;
- }
|