import 'package:huixiang/data/order_product_vo.dart'; import 'package:json_annotation/json_annotation.dart'; part 'down_order.g.dart'; @JsonSerializable(explicitToJson: true) class DownOrder { DownOrder({ this.id, this.orderCode, this.storeId, this.storeName, this.orderStatus, this.returnType, this.shipperCode, this.logisticsNum, this.orderSum, this.accountPay, this.discountAmount, this.postFee, this.paySum, this.overTime, this.orderProductVOList, this.moneyReturnList, this.goodsReturnList, this.tablePrice, this.parentCode, this.parentId, this.peopleNum, this.orderSource, }); String? id; String? orderCode; dynamic storeId; dynamic storeName; dynamic orderStatus; dynamic returnType; dynamic shipperCode; dynamic logisticsNum; String? orderSum; dynamic accountPay; dynamic discountAmount; dynamic postFee; dynamic paySum; dynamic overTime; List? orderProductVOList; dynamic moneyReturnList; dynamic goodsReturnList; dynamic tablePrice; dynamic parentCode; String? parentId; dynamic peopleNum; int? orderSource; factory DownOrder.fromJson(Map json) => _$DownOrderFromJson(json); Map toJson() => _$DownOrderToJson(this); }