class UpdateLockInfoEntity { UpdateLockInfoEntity( {this.errorCode, this.description, this.errorMsg, this.data}); UpdateLockInfoEntity.fromJson(Map json) { errorCode = json['errorCode']; description = json['description']; errorMsg = json['errorMsg']; data = json['data']; } int? errorCode; String? description; String? errorMsg; dynamic data; Map toJson() { final Map data = {}; data['errorCode'] = errorCode; data['description'] = description; data['errorMsg'] = errorMsg; data['data'] = this.data; return data; } }