class DropdownList { String? msg; int? code; List? data; DropdownList({this.msg, this.code, this.data}); DropdownList.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; int? dictSort; String? dictName; String? dictValue; String? dictType; int? dictStatus; Data( {this.id, this.isDel, this.createDate, this.createUser, this.updateDate, this.updateUser, this.tenantId, this.dictSort, this.dictName, this.dictValue, this.dictType, this.dictStatus}); 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']; dictSort = json['dictSort']; dictName = json['dictName']; dictValue = json['dictValue']; dictType = json['dictType']; dictStatus = json['dictStatus']; } 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['dictSort'] = this.dictSort; data['dictName'] = this.dictName; data['dictValue'] = this.dictValue; data['dictType'] = this.dictType; data['dictStatus'] = this.dictStatus; return data; } }