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.
21 lines
430 B
21 lines
430 B
class RecommendBean {
|
|
int? code;
|
|
String? msg;
|
|
RecommendData? data;
|
|
|
|
RecommendBean.fromMap(Map<String, dynamic> map) {
|
|
code = map['code'];
|
|
msg = map['msg'];
|
|
data = map['data'] != null ? RecommendData.fromMap(map['data']) : null;
|
|
}
|
|
}
|
|
|
|
class RecommendData {
|
|
List<int>? ids;
|
|
|
|
RecommendData.fromMap(Map<String, dynamic> map) {
|
|
if (map['ids'] != null) {
|
|
ids = List<int>.from(map['ids']);
|
|
}
|
|
}
|
|
} |