12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
|
|
interface FormOrderPlacementMainData {
|
||
|
|
Order: string;
|
||
|
|
OrderNum: string;
|
||
|
|
fiscalYear: number;
|
||
|
|
OrderDate: string;
|
||
|
|
OrderBy: string;
|
||
|
|
Signer: string;
|
||
|
|
OrderStatus: string;
|
||
|
|
OrderType: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { FormOrderPlacementMainData };
|