14 lines
282 B
TypeScript
14 lines
282 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,
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { FormData }
|