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.
21 lines
404 B
21 lines
404 B
class BaseModel {
|
|
int? code;
|
|
String? message;
|
|
bool? status;
|
|
dynamic data;
|
|
BaseModel({
|
|
this.code,
|
|
this.message,
|
|
this.data,
|
|
this.status,
|
|
});
|
|
|
|
BaseModel.err({this.message = '未知错误', this.status = false});
|
|
|
|
BaseModel.fromJson(Map<String, dynamic> json) {
|
|
message = json['message'] ?? '';
|
|
data = json['data'] ?? null;
|
|
status = json['status'] ?? false;
|
|
}
|
|
}
|