storeInfo.dart 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'storeInfo.g.dart';
  3. @JsonSerializable()
  4. class StoreInfo {
  5. StoreInfo();
  6. num add_time;
  7. num browse;
  8. String cate_id;
  9. String code_path;
  10. num ficti;
  11. String give_integral;
  12. num id;
  13. String image;
  14. num is_sub;
  15. String is_bargain;
  16. num is_benefit;
  17. num is_best;
  18. num is_del;
  19. num is_hot;
  20. num is_new;
  21. num is_postage;
  22. num is_seckill;
  23. num is_show;
  24. String keyword;
  25. num mer_id;
  26. num mer_use;
  27. String ot_price;
  28. String postage;
  29. String price;
  30. num sales;
  31. List<String> slider_image;
  32. num sort;
  33. num stock;
  34. String store_info;
  35. String store_name;
  36. String unit_name;
  37. String vip_price;
  38. num spec_type;
  39. String fsales;
  40. String video_link;
  41. String image_base;
  42. String code_base;
  43. String description;
  44. bool userCollect;
  45. bool userLike;
  46. factory StoreInfo.fromJson(Map<String,dynamic> json) => _$StoreInfoFromJson(json);
  47. Map<String, dynamic> toJson() => _$StoreInfoToJson(this);
  48. }