14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
|
|
interface FormRegistryEmployee {
|
||
|
|
no: string;
|
||
|
|
name: string;
|
||
|
|
positionNum: string;
|
||
|
|
position: string;
|
||
|
|
path: string;
|
||
|
|
type: string;
|
||
|
|
level: string;
|
||
|
|
affiliation: string;
|
||
|
|
yearly: number;
|
||
|
|
pay: string;
|
||
|
|
}
|
||
|
|
export type { FormRegistryEmployee };
|