You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
1 month ago
|
import 'package:huixiang/data/coupon_vo.dart';
|
||
|
import 'package:huixiang/data/product_show.dart';
|
||
|
import 'package:huixiang/data/store_type.dart';
|
||
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'store.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class Store {
|
||
|
Store();
|
||
|
|
||
|
String? id;
|
||
|
String? createTime;
|
||
|
String? createUser;
|
||
|
String? updateTime;
|
||
|
String? updateUser;
|
||
|
String? tenantCode;
|
||
|
bool? useErp;
|
||
|
String? openStartTime;
|
||
|
String? openEndTime;
|
||
|
String? perCapitaConsumption;
|
||
|
String? storeName;
|
||
|
double? distance;
|
||
|
String? logo;
|
||
|
String? facade;
|
||
|
String? shipAddress;
|
||
|
dynamic remark;
|
||
|
String? mobile;
|
||
|
String? longitude;
|
||
|
String? latitude;
|
||
|
dynamic refundAddress;
|
||
|
dynamic refundTel;
|
||
|
dynamic refundContact;
|
||
|
int? isAutoSendRefundAddress;
|
||
|
String? province;
|
||
|
String? city;
|
||
|
String? district;
|
||
|
String? address;
|
||
|
String? headName;
|
||
|
String? headMobile;
|
||
|
CouponVo? couponVO;
|
||
|
dynamic deliveryInfo;
|
||
|
String? businessType;
|
||
|
String? businessService;
|
||
|
List<ProductShow>? productShow;
|
||
|
StoreType? posType;
|
||
|
|
||
|
factory Store.fromJson(Map<String, dynamic> json) => _$StoreFromJson(json);
|
||
|
Map<String, dynamic> toJson() => _$StoreToJson(this);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|