// Project imports: import 'package:akuCommunity/model/common/img_model.dart'; class FixedDetailModel { AppReportRepairVo appReportRepairVo; List appProcessRecordVo; Null appMaintenanceResultVo; AppDispatchListVo appDispatchListVo; FixedDetailModel( {this.appReportRepairVo, this.appProcessRecordVo, this.appMaintenanceResultVo, this.appDispatchListVo}); FixedDetailModel.fromJson(Map json) { appReportRepairVo = json['appReportRepairVo'] != null ? new AppReportRepairVo.fromJson(json['appReportRepairVo']) : null; if (json['appProcessRecordVo'] != null) { appProcessRecordVo = new List(); json['appProcessRecordVo'].forEach((v) { appProcessRecordVo.add(new AppProcessRecordVo.fromJson(v)); }); } appMaintenanceResultVo = json['appMaintenanceResultVo']; appDispatchListVo = json['appDispatchListVo'] != null ? new AppDispatchListVo.fromJson(json['appDispatchListVo']) : null; } Map toJson() { final Map data = new Map(); if (this.appReportRepairVo != null) { data['appReportRepairVo'] = this.appReportRepairVo.toJson(); } if (this.appProcessRecordVo != null) { data['appProcessRecordVo'] = this.appProcessRecordVo.map((v) => v.toJson()).toList(); } data['appMaintenanceResultVo'] = this.appMaintenanceResultVo; if (this.appDispatchListVo != null) { data['appDispatchListVo'] = this.appDispatchListVo.toJson(); } return data; } } class AppReportRepairVo { int id; int type; int status; String reportDetail; List imgUrls; AppReportRepairVo( {this.id, this.type, this.status, this.reportDetail, this.imgUrls}); AppReportRepairVo.fromJson(Map json) { id = json['id']; type = json['type']; status = json['status']; reportDetail = json['reportDetail']; if (json['imgUrls'] != null) { imgUrls = new List(); json['imgUrls'].forEach((v) { imgUrls.add(new ImgModel.fromJson(v)); }); } } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['type'] = this.type; data['status'] = this.status; data['reportDetail'] = this.reportDetail; if (this.imgUrls != null) { data['imgUrls'] = this.imgUrls.map((v) => v.toJson()).toList(); } return data; } } class AppProcessRecordVo { String operationDate; int operationType; AppProcessRecordVo({this.operationDate, this.operationType}); AppProcessRecordVo.fromJson(Map json) { operationDate = json['operationDate']; operationType = json['operationType']; } Map toJson() { final Map data = new Map(); data['operationDate'] = this.operationDate; data['operationType'] = this.operationType; return data; } } class AppDispatchListVo { String code; String orderDate; int type; String operatorName; String distributorName; AppDispatchListVo( {this.code, this.orderDate, this.type, this.operatorName, this.distributorName}); AppDispatchListVo.fromJson(Map json) { code = json['code']; orderDate = json['orderDate']; type = json['type']; operatorName = json['operatorName']; distributorName = json['distributorName']; } Map toJson() { final Map data = new Map(); data['code'] = this.code; data['orderDate'] = this.orderDate; data['type'] = this.type; data['operatorName'] = this.operatorName; data['distributorName'] = this.distributorName; return data; } }