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.
60 lines
1.3 KiB
60 lines
1.3 KiB
import 'package:huixiang/data/order_product_vo.dart'; |
|
import 'package:huixiang/generated/json/base/json_field.dart'; |
|
import 'package:huixiang/generated/json/down_order.g.dart'; |
|
|
|
@JsonSerializable() |
|
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<OrderProductVO>? orderProductVOList; |
|
dynamic moneyReturnList; |
|
dynamic goodsReturnList; |
|
dynamic tablePrice; |
|
dynamic parentCode; |
|
String? parentId; |
|
dynamic peopleNum; |
|
int? orderSource; |
|
|
|
factory DownOrder.fromJson(Map<String, dynamic> json) => |
|
$DownOrderFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => $DownOrderToJson(this); |
|
} |
|
|
|
|