hrms-mgt/src/modules/11_discipline/interface/request/order.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 cfc073e30c ปรับ interfeac
2023-10-19 15:39:18 +07:00

30 lines
No EOL
676 B
TypeScript

interface FormData {
orderType: string;
orderBy: string;
listInvestigation: string;
authority: string;
orderNumber: string;
dateYear: number;
date: Date | null;
authorityPosition: string
subject: string;
mistakeDetail: string
}
interface MyObjectRef {
orderType: object | null;
orderBy: object | null;
listInvestigation: object | null;
authority: object | null;
orderNumber: object | null;
dateYear: object | null;
date: object | null;
authorityPosition: object | null;
subject: object | null;
mistakeDetail: object | null;
[key: string]: any;
}
export type {
FormData,
MyObjectRef
}