Untitled
unknown
javascript
2 years ago
1.1 kB
5
Indexable
export type OrderDetailType = {
customerid: string;
bachnumber: string;
timestamp: string;
accountholder: string;
address: string;
accnumber: string;
discountcode: string;
situation: string | null;
state: string;
city: string;
postalcode: string;
post_price: string;
buyOrderDetails: {
bachnumber: number;
status: 0 | 1 | 2 | 3;
prestatus: 0 | 1 | 2 | 3;
image_address: string;
condition: 0 | 1;
remark: null | string;
title: string;
isbn: number;
dealprice: null | number;
predealprice: null | number;
s_quantity: number;
s_discount_price: number;
s_total_price: number;
s_sum_weight: number;
}[];
saleOrderDetails: {
bachnumber: number;
status: 0 | 1 | 2 | 3;
prestatus: 0 | 1 | 2 | 3;
image_address: string;
condition: 0 | 1;
remark: null | string;
title: string;
isbn: number;
dealprice: null | number;
predealprice: null | number;
s_quantity: number;
s_discount_price: number;
s_total_price: number;
s_sum_weight: number;
}[];
};
Editor is loading...