| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import 'package:json_annotation/json_annotation.dart';
- part 'storeInfo.g.dart';
- @JsonSerializable()
- class StoreInfo {
- StoreInfo();
- num add_time;
- num browse;
- String cate_id;
- String code_path;
- num ficti;
- String give_integral;
- num id;
- String image;
- num is_sub;
- String is_bargain;
- num is_benefit;
- num is_best;
- num is_del;
- num is_hot;
- num is_new;
- num is_postage;
- num is_seckill;
- num is_show;
- String keyword;
- num mer_id;
- num mer_use;
- String ot_price;
- String postage;
- String price;
- num sales;
- List<String> slider_image;
- num sort;
- num stock;
- String store_info;
- String store_name;
- String unit_name;
- String vip_price;
- num spec_type;
- String fsales;
- String video_link;
- String image_base;
- String code_base;
- String description;
- bool userCollect;
- bool userLike;
-
- factory StoreInfo.fromJson(Map<String,dynamic> json) => _$StoreInfoFromJson(json);
- Map<String, dynamic> toJson() => _$StoreInfoToJson(this);
- }
|