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.
31 lines
527 B
31 lines
527 B
4 years ago
|
|
||
|
|
||
|
import 'package:huixiang/retrofit/data/banner.dart';
|
||
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
|
||
|
part 'brand_data.g.dart';
|
||
|
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class BrandData {
|
||
|
|
||
|
BrandData();
|
||
|
|
||
|
List<BannerData> bannerList;
|
||
|
String company;
|
||
|
String companyDesc;
|
||
|
String originAvatar;
|
||
|
String originDesc;
|
||
|
String originator;
|
||
|
|
||
|
dynamic contents;
|
||
|
dynamic ideals;
|
||
|
|
||
|
|
||
|
factory BrandData.fromJson(Map<String, dynamic> json) =>
|
||
|
_$BrandDataFromJson(json);
|
||
|
Map<String, dynamic> toJson() => _$BrandDataToJson(this);
|
||
|
|
||
|
|
||
|
}
|