2024-03-19 15:15:02 +07:00
|
|
|
interface RequestItemsObject {
|
2024-03-20 14:10:53 +07:00
|
|
|
profileId?: string;
|
2024-03-19 15:15:02 +07:00
|
|
|
isActive: boolean;
|
|
|
|
|
detail: string;
|
|
|
|
|
issueDate: Date | null;
|
|
|
|
|
issuer: string;
|
|
|
|
|
refCommandDate: Date | null;
|
|
|
|
|
refCommandNo: string;
|
|
|
|
|
isDate: boolean;
|
2024-03-14 15:06:25 +07:00
|
|
|
}
|
|
|
|
|
|
2024-03-19 15:15:02 +07:00
|
|
|
interface FormData {
|
2024-03-14 15:06:25 +07:00
|
|
|
id: string;
|
2024-03-19 15:15:02 +07:00
|
|
|
isActive: boolean;
|
|
|
|
|
isDate: string | null;
|
2024-03-14 15:06:25 +07:00
|
|
|
issuer: string;
|
|
|
|
|
detail: string;
|
2024-03-19 15:15:02 +07:00
|
|
|
issueDate: Date | null;
|
|
|
|
|
issueDateYear: number;
|
2024-03-14 15:06:25 +07:00
|
|
|
refCommandNo: string;
|
2024-03-19 15:15:02 +07:00
|
|
|
refCommandDate: Date | null;
|
2024-03-14 15:06:25 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//columns
|
|
|
|
|
interface Columns {
|
|
|
|
|
[index: number]: {
|
|
|
|
|
name: String;
|
|
|
|
|
align: String;
|
|
|
|
|
label: String;
|
|
|
|
|
sortable: Boolean;
|
|
|
|
|
field: String;
|
|
|
|
|
headerStyle: String;
|
|
|
|
|
style: String;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-19 15:15:02 +07:00
|
|
|
export type { RequestItemsObject, FormData, Columns };
|