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.
62 lines
1.3 KiB
62 lines
1.3 KiB
1 month ago
|
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<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);
|
||
|
}
|
||
|
|