class DoctorChatList { String? msg; int? code; List? data; DoctorChatList({this.msg, this.code, this.data}); DoctorChatList.fromJson(Map json) { msg = json['msg']; code = json['code']; if (json['data'] != null) { data = []; json['data'].forEach((v) { data!.add(new Data.fromJson(v)); }); } } Map toJson() { final Map data = new Map(); data['msg'] = this.msg; data['code'] = this.code; if (this.data != null) { data['data'] = this.data!.map((v) => v.toJson()).toList(); } return data; } } class Data { String? id; int? isDel; String? createDate; String? createUser; String? updateDate; String? updateUser; String? tenantId; String? phoneNumber; String? password; String? identificationCard; String? avatar; Data( {this.id, this.isDel, this.createDate, this.createUser, this.updateDate, this.updateUser, this.tenantId, this.phoneNumber, this.password, this.identificationCard, this.avatar}); Data.fromJson(Map json) { id = json['id']; isDel = json['isDel']; createDate = json['createDate']; createUser = json['createUser']; updateDate = json['updateDate']; updateUser = json['updateUser']; tenantId = json['tenantId']; phoneNumber = json['phoneNumber']; password = json['password']; identificationCard = json['identificationCard']; avatar = json['avatar']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['isDel'] = this.isDel; data['createDate'] = this.createDate; data['createUser'] = this.createUser; data['updateDate'] = this.updateDate; data['updateUser'] = this.updateUser; data['tenantId'] = this.tenantId; data['phoneNumber'] = this.phoneNumber; data['password'] = this.password; data['identificationCard'] = this.identificationCard; data['avatar'] = this.avatar; return data; } }