| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import 'package:bbyyy/generated/json/base/json_convert_content.dart';
- import 'package:bbyyy/generated/json/base/json_field.dart';
- class TouristGoodsBeanEntity with JsonConvert<TouristGoodsBeanEntity> {
- List<TouristGoodsBeanData> data;
- String error;
- }
- class TouristGoodsBeanData with JsonConvert<TouristGoodsBeanData> {
- @JSONField(name: "ID")
- int iD;
- @JSONField(name: "shop_id")
- int shopId;
- @JSONField(name: "shop_pic")
- String shopPic;
- @JSONField(name: "shop_name")
- String shopName;
- @JSONField(name: "user_uid")
- int userUid;
- @JSONField(name: "user_name")
- String userName;
- @JSONField(name: "user_pic")
- String userPic;
- String title;
- @JSONField(name: "cover_path")
- String coverPath;
- String description;
- @JSONField(name: "original_price")
- double originalPrice;
- double price;
- @JSONField(name: "on_sale")
- bool onSale;
- int stock;
- @JSONField(name: "create_time")
- String createTime;
- String pictures;
- String category;
- bool public;
- }
|