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.
39 lines
865 B
39 lines
865 B
|
|
export interface OrderGoodsData {
|
|
id: number;
|
|
logisticsNo: string;
|
|
freightPrice: string;
|
|
deliveryAddressId: number;
|
|
deliveryAddress: string;
|
|
orderNo: string;
|
|
childOrderNo: string;
|
|
merId: number;
|
|
userId: number;
|
|
userPhone: string;
|
|
goodsId: number;
|
|
img: string;
|
|
goodsName: string;
|
|
goodsTypeId: number;
|
|
goodsTypeName: string,
|
|
goodsBrandId: number;
|
|
goodsBrandName: string;
|
|
goodsSpecsId: number;
|
|
goodsSpecsName: string;
|
|
goodsSpecsOriginalPrice: string;
|
|
goodsCount: string;
|
|
totalPrice: string;
|
|
totalDeductionPrice: string;
|
|
couponDiscountPrice: string;
|
|
integralDiscountPrice: string;
|
|
payRealPrice: string;
|
|
payChannel: string;
|
|
paySerialNo: string;
|
|
payType: number;
|
|
status: number;
|
|
createTime: string;
|
|
payTime: string;
|
|
cancelTime: string;
|
|
refundTime: string;
|
|
finishTime: string;
|
|
updateTime: string;
|
|
}
|
|
|