hrms-mgt/src/modules/09_leave/interface/response/changeRound.ts

39 lines
733 B
TypeScript
Raw Normal View History

interface changeShow {
2024-09-03 11:28:01 +07:00
cardId: string;
prefix: string;
firstName: string;
lastName: string;
fullName: string;
roundStart: string;
roundEnd: string;
currentRound: string;
effectiveDate: string | null;
}
interface dataRowChangeRound {
2024-09-03 11:28:01 +07:00
cardId: string;
prefix: string;
firstName: string;
lastName: string;
roundStart: string;
roundEnd: string;
effectiveDate: Date;
}
interface dataRowChangeRoundHistory {
2024-09-03 11:28:01 +07:00
id: string;
roundStart: string;
roundEnd: string;
effectiveDate: Date;
reson: string | null;
}
interface historyShow {
2024-09-03 11:28:01 +07:00
time: string;
effectiveDate: string | null;
reson: string | null;
}
export type {
2024-09-03 11:28:01 +07:00
changeShow,
dataRowChangeRound,
dataRowChangeRoundHistory,
historyShow,
};