class HomePageModel { String code; String message; HomeData data; HomePageModel({this.code, this.message, this.data}); HomePageModel.fromJson(Map json) { code = json['code']; message = json['message']; data = json['data'] != null ? HomeData.fromJson(json['data']) : null; } Map toJson() { final Map data = Map(); data['code'] = this.code; data['message'] = this.message; if (this.data != null) { data['data'] = this.data.toJson(); } return data; } } class HomeData { List slides; ShopInfo shopInfo; IntegralMallPic integralMallPic; ToShareCode toShareCode; List recommend; AdvertesPicture advertesPicture; List floor1; List floor2; List floor3; Saoma saoma; NewUser newUser; Floor1Pic floor1Pic; Floor2Pic floor2Pic; FloorName floorName; List category; Floor3Pic floor3Pic; HomeData( {this.slides, this.shopInfo, this.integralMallPic, this.toShareCode, this.recommend, this.advertesPicture, this.floor1, this.floor2, this.floor3, this.saoma, this.newUser, this.floor1Pic, this.floor2Pic, this.floorName, this.category, this.floor3Pic}); HomeData.fromJson(Map json) { if (json['slides'] != null) { slides = List(); json['slides'].forEach((v) { slides.add(Slides.fromJson(v)); }); } shopInfo = json['shopInfo'] != null ? ShopInfo.fromJson(json['shopInfo']) : null; integralMallPic = json['integralMallPic'] != null ? IntegralMallPic.fromJson(json['integralMallPic']) : null; toShareCode = json['toShareCode'] != null ? ToShareCode.fromJson(json['toShareCode']) : null; if (json['recommend'] != null) { recommend = List(); json['recommend'].forEach((v) { recommend.add(Recommend.fromJson(v)); }); } advertesPicture = json['advertesPicture'] != null ? AdvertesPicture.fromJson(json['advertesPicture']) : null; if (json['floor1'] != null) { floor1 = List(); json['floor1'].forEach((v) { floor1.add(Floor.fromJson(v)); }); } if (json['floor2'] != null) { floor2 = List(); json['floor2'].forEach((v) { floor2.add(Floor.fromJson(v)); }); } if (json['floor3'] != null) { floor3 = List(); json['floor3'].forEach((v) { floor3.add(Floor.fromJson(v)); }); } saoma = json['saoma'] != null ? Saoma.fromJson(json['saoma']) : null; newUser = json['newUser'] != null ? NewUser.fromJson(json['newUser']) : null; floor1Pic = json['floor1Pic'] != null ? Floor1Pic.fromJson(json['floor1Pic']) : null; floor2Pic = json['floor2Pic'] != null ? Floor2Pic.fromJson(json['floor2Pic']) : null; floorName = json['floorName'] != null ? FloorName.fromJson(json['floorName']) : null; if (json['category'] != null) { category = List(); json['category'].forEach((v) { category.add(Category.fromJson(v)); }); } floor3Pic = json['floor3Pic'] != null ? Floor3Pic.fromJson(json['floor3Pic']) : null; } Map toJson() { final Map data = Map(); if (this.slides != null) { data['slides'] = this.slides.map((v) => v.toJson()).toList(); } if (this.shopInfo != null) { data['shopInfo'] = this.shopInfo.toJson(); } if (this.integralMallPic != null) { data['integralMallPic'] = this.integralMallPic.toJson(); } if (this.toShareCode != null) { data['toShareCode'] = this.toShareCode.toJson(); } if (this.recommend != null) { data['recommend'] = this.recommend.map((v) => v.toJson()).toList(); } if (this.advertesPicture != null) { data['advertesPicture'] = this.advertesPicture.toJson(); } if (this.floor1 != null) { data['floor1'] = this.floor1.map((v) => v.toJson()).toList(); } if (this.floor2 != null) { data['floor2'] = this.floor2.map((v) => v.toJson()).toList(); } if (this.floor3 != null) { data['floor3'] = this.floor3.map((v) => v.toJson()).toList(); } if (this.saoma != null) { data['saoma'] = this.saoma.toJson(); } if (this.newUser != null) { data['newUser'] = this.newUser.toJson(); } if (this.floor1Pic != null) { data['floor1Pic'] = this.floor1Pic.toJson(); } if (this.floor2Pic != null) { data['floor2Pic'] = this.floor2Pic.toJson(); } if (this.floorName != null) { data['floorName'] = this.floorName.toJson(); } if (this.category != null) { data['category'] = this.category.map((v) => v.toJson()).toList(); } if (this.floor3Pic != null) { data['floor3Pic'] = this.floor3Pic.toJson(); } return data; } } class Slides { String image; String goodsId; Slides({this.image, this.goodsId}); Slides.fromJson(Map json) { image = json['image']; goodsId = json['goodsId']; } Map toJson() { final Map data = Map(); data['image'] = this.image; data['goodsId'] = this.goodsId; return data; } } class ShopInfo { String leaderImage; String leaderPhone; ShopInfo({this.leaderImage, this.leaderPhone}); ShopInfo.fromJson(Map json) { leaderImage = json['leaderImage']; leaderPhone = json['leaderPhone']; } Map toJson() { final Map data = Map(); data['leaderImage'] = this.leaderImage; data['leaderPhone'] = this.leaderPhone; return data; } } class IntegralMallPic { String pICTUREADDRESS; String tOPLACE; IntegralMallPic({this.pICTUREADDRESS, this.tOPLACE}); IntegralMallPic.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } } class ToShareCode { String pICTUREADDRESS; String tOPLACE; ToShareCode({this.pICTUREADDRESS, this.tOPLACE}); ToShareCode.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } } class Recommend { String image; double mallPrice; String goodsName; String goodsId; double price; Recommend({this.image, this.mallPrice, this.goodsName, this.goodsId, this.price}); Recommend.fromJson(Map json) { image = json['image']; mallPrice = json['mallPrice'] + 0.0; goodsName = json['goodsName']; goodsId = json['goodsId']; price = json['price'] + 0.0; } Map toJson() { final Map data = Map(); data['image'] = this.image; data['mallPrice'] = this.mallPrice; data['goodsName'] = this.goodsName; data['goodsId'] = this.goodsId; data['price'] = this.price; return data; } } class AdvertesPicture { String pICTUREADDRESS; String tOPLACE; AdvertesPicture({this.pICTUREADDRESS, this.tOPLACE}); AdvertesPicture.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } } class Floor { String image; String goodsId; Floor({this.image, this.goodsId}); Floor.fromJson(Map json) { image = json['image']; goodsId = json['goodsId']; } Map toJson() { final Map data = Map(); data['image'] = this.image; data['goodsId'] = this.goodsId; return data; } } class Saoma { String pICTUREADDRESS; String tOPLACE; Saoma({this.pICTUREADDRESS, this.tOPLACE}); Saoma.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } } class NewUser { String pICTUREADDRESS; String tOPLACE; NewUser({this.pICTUREADDRESS, this.tOPLACE}); NewUser.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } } class Floor1Pic { String pICTUREADDRESS; String tOPLACE; Floor1Pic({this.pICTUREADDRESS, this.tOPLACE}); Floor1Pic.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } } class Floor2Pic { String pICTUREADDRESS; String tOPLACE; Floor2Pic({this.pICTUREADDRESS, this.tOPLACE}); Floor2Pic.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } } class FloorName { String floor1; String floor2; String floor3; FloorName({this.floor1, this.floor2, this.floor3}); FloorName.fromJson(Map json) { floor1 = json['floor1']; floor2 = json['floor2']; floor3 = json['floor3']; } Map toJson() { final Map data = Map(); data['floor1'] = this.floor1; data['floor2'] = this.floor2; data['floor3'] = this.floor3; return data; } } class Category { String mallCategoryId; String mallCategoryName; List bxMallSubDto; Null comments; String image; Category({this.mallCategoryId, this.mallCategoryName, this.bxMallSubDto, this.comments, this.image}); Category.fromJson(Map json) { mallCategoryId = json['mallCategoryId']; mallCategoryName = json['mallCategoryName']; if (json['bxMallSubDto'] != null) { bxMallSubDto = List(); json['bxMallSubDto'].forEach((v) { bxMallSubDto.add(BxMallSubDto.fromJson(v)); }); } comments = json['comments']; image = json['image']; } Map toJson() { final Map data = Map(); data['mallCategoryId'] = this.mallCategoryId; data['mallCategoryName'] = this.mallCategoryName; if (this.bxMallSubDto != null) { data['bxMallSubDto'] = this.bxMallSubDto.map((v) => v.toJson()).toList(); } data['comments'] = this.comments; data['image'] = this.image; return data; } } class BxMallSubDto { String mallSubId; String mallCategoryId; String mallSubName; String comments; BxMallSubDto({this.mallSubId, this.mallCategoryId, this.mallSubName, this.comments}); BxMallSubDto.fromJson(Map json) { mallSubId = json['mallSubId']; mallCategoryId = json['mallCategoryId']; mallSubName = json['mallSubName']; comments = json['comments']; } Map toJson() { final Map data = Map(); data['mallSubId'] = this.mallSubId; data['mallCategoryId'] = this.mallCategoryId; data['mallSubName'] = this.mallSubName; data['comments'] = this.comments; return data; } } class Floor3Pic { String pICTUREADDRESS; String tOPLACE; Floor3Pic({this.pICTUREADDRESS, this.tOPLACE}); Floor3Pic.fromJson(Map json) { pICTUREADDRESS = json['PICTURE_ADDRESS']; tOPLACE = json['TO_PLACE']; } Map toJson() { final Map data = Map(); data['PICTURE_ADDRESS'] = this.pICTUREADDRESS; data['TO_PLACE'] = this.tOPLACE; return data; } }