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.
47 lines
962 B
47 lines
962 B
|
|
import 'package:huixiang/retrofit/data/store_type.dart'; |
|
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
|
|
part '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 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; |
|
dynamic deliveryInfo; |
|
String businessType; |
|
StoreType posType; |
|
|
|
factory Store.fromJson(Map<String, dynamic> json) => _$StoreFromJson(json); |
|
Map<String, dynamic> toJson() => _$StoreToJson(this); |
|
|
|
}
|
|
|