hrms-mgt/src/modules/14_KPI/interface/request/Main.ts

15 lines
242 B
TypeScript
Raw Normal View History

interface FormQueryRound {
page: number;
pageSize: number;
year: number;
keyword: string;
2024-04-05 14:08:20 +07:00
}
interface FormRound {
durationKPI: string;
startDate: Date | null;
endDate: Date | null;
}
export type { FormQueryRound, FormRound };