|
|
|
@ -19,6 +19,7 @@ class Store {
|
|
|
|
|
String storeName; |
|
|
|
|
double distance; |
|
|
|
|
String logo; |
|
|
|
|
String facade; |
|
|
|
|
String shipAddress; |
|
|
|
|
dynamic remark; |
|
|
|
|
String mobile; |
|
|
|
@ -53,6 +54,7 @@ class Store {
|
|
|
|
|
..storeName = json['storeName'] as String |
|
|
|
|
..distance = (json['distance'] as num)?.toDouble() |
|
|
|
|
..logo = json['logo'] as String |
|
|
|
|
..facade = json['facade'] as String |
|
|
|
|
..shipAddress = json['shipAddress'] as String |
|
|
|
|
..remark = json['remark'] |
|
|
|
|
..mobile = json['mobile'] as String |
|
|
|
@ -89,6 +91,7 @@ class Store {
|
|
|
|
|
'storeName': this.storeName, |
|
|
|
|
'distance': this.distance, |
|
|
|
|
'logo': this.logo, |
|
|
|
|
'facade': this.facade, |
|
|
|
|
'shipAddress': this.shipAddress, |
|
|
|
|
'remark': this.remark, |
|
|
|
|
'mobile': this.mobile, |
|
|
|
|