hrms-mgt/src/modules/08_registryEmployee/request/Main.ts

14 lines
251 B
TypeScript
Raw Normal View History

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 };