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.
57 lines
1.2 KiB
57 lines
1.2 KiB
10 months ago
|
|
||
|
|
||
|
import 'package:huixiang/data/coupon_vo.dart';
|
||
|
import 'package:huixiang/data/product_show.dart';
|
||
|
import 'package:huixiang/data/store_type.dart';
|
||
|
import 'package:huixiang/generated/json/base/json_field.dart';
|
||
|
import 'package:huixiang/generated/json/store.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|