19 lines
No EOL
341 B
TypeScript
19 lines
No EOL
341 B
TypeScript
interface FormData {
|
|
type: string,
|
|
citizenId: string,
|
|
fullName: string,
|
|
retireYear: number | null,
|
|
year: number | null,
|
|
posPath: string,
|
|
posLevel: string,
|
|
posOc: string,
|
|
isShowRetire: boolean,
|
|
isProbation: boolean,
|
|
}
|
|
|
|
interface YearRange {
|
|
min:number,
|
|
max:number
|
|
}
|
|
|
|
export type { FormData , YearRange} |