2024-11-25 13:18:11 +07:00
|
|
|
interface DataPost {
|
2023-11-24 17:28:37 +07:00
|
|
|
cardId: string;
|
|
|
|
|
firstName: string;
|
|
|
|
|
lastName: string;
|
2024-06-24 15:57:23 +07:00
|
|
|
page: number;
|
|
|
|
|
pageSize: number;
|
2026-04-30 16:07:02 +07:00
|
|
|
selectedNodeId?: string | null;
|
|
|
|
|
selectedNode?: string;
|
2023-11-24 17:28:37 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface DataOption {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2023-11-02 17:32:57 +07:00
|
|
|
}
|
|
|
|
|
interface changeRoundEdit {
|
2023-11-24 17:28:37 +07:00
|
|
|
round: string;
|
|
|
|
|
date: string;
|
|
|
|
|
reson: string;
|
|
|
|
|
effectiveDate: Date | null;
|
2023-11-02 17:32:57 +07:00
|
|
|
}
|
|
|
|
|
interface MyObjectRoundChangeRef {
|
2023-11-24 17:28:37 +07:00
|
|
|
round: object | null;
|
|
|
|
|
effectiveDate: object | null;
|
|
|
|
|
[key: string]: any;
|
2023-11-02 17:32:57 +07:00
|
|
|
}
|
2023-11-03 17:54:28 +07:00
|
|
|
interface MyObjectRoundChangeMainRef {
|
2023-11-24 17:28:37 +07:00
|
|
|
cardId: object | null;
|
|
|
|
|
firstName: object | null;
|
|
|
|
|
lastName: object | null;
|
|
|
|
|
[key: string]: any;
|
2023-11-03 17:54:28 +07:00
|
|
|
}
|
2023-11-02 17:32:57 +07:00
|
|
|
export type {
|
2024-11-25 13:18:11 +07:00
|
|
|
DataPost,
|
2023-11-24 17:28:37 +07:00
|
|
|
changeRoundEdit,
|
|
|
|
|
MyObjectRoundChangeRef,
|
|
|
|
|
MyObjectRoundChangeMainRef,
|
|
|
|
|
DataOption,
|
|
|
|
|
};
|