You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
621 B
30 lines
621 B
import 'package:json_annotation/json_annotation.dart'; |
|
part 'base_data.g.dart'; |
|
|
|
@JsonSerializable(genericArgumentFactories: true, explicitToJson: true) |
|
class BaseData<T> { |
|
|
|
BaseData({ |
|
this.code, |
|
this.data, |
|
this.extra, |
|
this.isSuccess, |
|
this.msg, |
|
this.path, |
|
this.timestamp, |
|
}); |
|
|
|
int? code; |
|
T? data; |
|
dynamic extra; |
|
bool? isError; |
|
bool? isSuccess; |
|
String? msg; |
|
String? path; |
|
String? timestamp; |
|
|
|
factory BaseData.fromJson(Map<String, dynamic> json, fromJson) => _$BaseDataFromJson<T>(json, fromJson); |
|
|
|
Map<String, dynamic> toJson(toJson) => _$BaseDataToJson(this, toJson); |
|
|
|
}
|
|
|