| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import 'package:bbyyy/generated/json/base/json_convert_content.dart';
- import 'package:bbyyy/generated/json/base/json_field.dart';
- class GoodsBeanEntity with JsonConvert<GoodsBeanEntity> {
- GoodsBeanData data;
- String error;
- }
- class GoodsBeanData with JsonConvert<GoodsBeanData> {
- int total;
- List<GoodsBeanDataData> data;
- }
- class GoodsBeanDataData with JsonConvert<GoodsBeanDataData> {
- @JSONField(name: "on_sale")
- bool onSale;
- String pictures;
- int id;
- @JSONField(name: "shop_uid")
- int shopUid;
- @JSONField(name: "user_pic")
- String userPic;
- String description;
- @JSONField(name: "shop_pic")
- String shopPic;
- @JSONField(name: "shop_name")
- String shopName;
- String category;
- String title;
- @JSONField(name: "original_price")
- double originalPrice;
- double price;
- int stock;
- @JSONField(name: "user_uid")
- int userUid;
- @JSONField(name: "user_name")
- String userName;
- @JSONField(name: "cover_path")
- String coverPath;
- @JSONField(name: "create_time")
- String createTime;
- }
|