26 lines
652 B
Dart
26 lines
652 B
Dart
class UpdateLockInfoEntity {
|
|
UpdateLockInfoEntity(
|
|
{this.errorCode, this.description, this.errorMsg, this.data});
|
|
|
|
UpdateLockInfoEntity.fromJson(Map<String, dynamic> json) {
|
|
errorCode = json['errorCode'];
|
|
description = json['description'];
|
|
errorMsg = json['errorMsg'];
|
|
data = json['data'];
|
|
}
|
|
|
|
int? errorCode;
|
|
String? description;
|
|
String? errorMsg;
|
|
dynamic data;
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = <String, dynamic>{};
|
|
data['errorCode'] = errorCode;
|
|
data['description'] = description;
|
|
data['errorMsg'] = errorMsg;
|
|
data['data'] = this.data;
|
|
return data;
|
|
}
|
|
}
|