| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import 'package:bbyyy/generated/json/base/json_convert_content.dart';
- import 'package:bbyyy/generated/json/base/json_field.dart';
- class StoreBeanEntity with JsonConvert<StoreBeanEntity> {
- StoreBeanData data;
- String error;
- }
- class StoreBeanData with JsonConvert<StoreBeanData> {
- int total;
- List<StoreBeanDataData> data;
- }
- class StoreBeanDataData with JsonConvert<StoreBeanDataData> {
- @JSONField(name: "create_time")
- String createTime;
- @JSONField(name: "inner_trade")
- bool innerTrade;
- @JSONField(name: "shop_commission_threshold")
- double shopCommissionThreshold;
- String notice;
- int state;
- bool banned;
- @JSONField(name: "shop_commission_pricing")
- double shopCommissionPricing;@JSONField(name: "shop_commission_receiver_uid")
- int shopCommissionReceiverUid;
- bool private;
- @JSONField(name: "owner_uid")
- int ownerUid;
- @JSONField(name: "owner_name")
- String ownerName;
- @JSONField(name: "owner_pic")
- String ownerPic;
- @JSONField(name: "hide_members")
- bool hideMembers = true;
- @JSONField(name: "hide_offline_pay")
- bool hideOfflinePay = false;
- @JSONField(name: "fee_type")
- int feeType;
- String mobile;
- int id;
- String picture;
- @JSONField(name: "ban_expire_date")
- String banExpireDate;
- String address;
- String introduction;
- int uid;
- String name;
- @JSONField(name: "ban_start_date")
- String banStartDate;
- @JSONField(name: "shop_commission_percent")
- bool shopCommissionPercent;
- @JSONField(name: "owner_pay_platform_fee")
- bool ownerPayPlatformFee;
- double longitude;
- double latitude;
- }
|