2024-03-05 15:53:38 +07:00
|
|
|
interface FormData {
|
|
|
|
|
type: string,
|
|
|
|
|
citizenId: string,
|
|
|
|
|
fullName: string,
|
|
|
|
|
retireYear: number | null,
|
|
|
|
|
year: number | null,
|
|
|
|
|
posPath: string,
|
|
|
|
|
posLevel: string,
|
|
|
|
|
posOc: string,
|
|
|
|
|
isShowRetire: boolean,
|
|
|
|
|
isProbation: boolean,
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-06 10:34:43 +07:00
|
|
|
interface YearRange {
|
|
|
|
|
min:number,
|
|
|
|
|
max:number
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { FormData , YearRange}
|