You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
569 B
18 lines
569 B
class SysData {
|
|
String? customerServiceWeChat;
|
|
String? customerServicePhone;
|
|
|
|
SysData({this.customerServiceWeChat, this.customerServicePhone});
|
|
|
|
SysData.fromJson(Map<String, dynamic> json) {
|
|
customerServiceWeChat = json['customerServiceWeChat'];
|
|
customerServicePhone = json['customerServicePhone'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['customerServiceWeChat'] = this.customerServiceWeChat;
|
|
data['customerServicePhone'] = this.customerServicePhone;
|
|
return data;
|
|
}
|
|
}
|