22 lines
532 B
Dart
22 lines
532 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'me_bean.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class MeBean {
|
|
int? Id;
|
|
String? TaskId;
|
|
String? OutputUri;
|
|
String? CreatTime;
|
|
String? UpdateTime;
|
|
String? InputParams;
|
|
String? Title;
|
|
bool? IsCheck;
|
|
|
|
MeBean(this.Id, this.TaskId, this.OutputUri, this.CreatTime, this.UpdateTime, this.InputParams, this.Title, this.IsCheck);
|
|
|
|
factory MeBean.fromJson(Map<String, dynamic> json) => _$MeBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$MeBeanToJson(this);
|
|
}
|