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.
|
|
|
/// name : "李旭清"
|
|
|
|
/// position : "集团创始人"
|
|
|
|
/// description : "1993年,台湾同胞李旭清在台湾创建“一心回乡”"
|
|
|
|
/// imgUrl : "https://pos.upload.gznl.top/MDAwMA==/2021/07/3f169d8c-5cb8-4789-a8f6-f2ce17277106.png"
|
|
|
|
/// profile : "<p><img class=\"wscnph\" src=\"https://pos.upload.gznl.top/MDAwMA==/2021/07/bdc0705d-7aa0-4677-a282-81d1b8a56e4b.png\" /></p>"
|
|
|
|
|
|
|
|
class Founder {
|
|
|
|
String? name;
|
|
|
|
String? position;
|
|
|
|
String? description;
|
|
|
|
String? imgUrl;
|
|
|
|
String? profile;
|
|
|
|
|
|
|
|
Founder();
|
|
|
|
|
|
|
|
Founder.fromJson(dynamic json) {
|
|
|
|
this.name = json["name"];
|
|
|
|
this.position = json["position"];
|
|
|
|
this.description = json["description"];
|
|
|
|
this.imgUrl = json["imgUrl"];
|
|
|
|
this.profile = json["profile"];
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
var map = <String, dynamic>{};
|
|
|
|
map["name"] = this.name;
|
|
|
|
map["position"] = this.position;
|
|
|
|
map["description"] = this.description;
|
|
|
|
map["imgUrl"] = this.imgUrl;
|
|
|
|
map["profile"] = this.profile;
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|