28 lines
643 B
TypeScript
28 lines
643 B
TypeScript
interface FormSalaryNew {
|
|
date: Date | null;
|
|
posNo: string;
|
|
templatePos: string;
|
|
position: string;
|
|
positionLine: string;
|
|
positionPathSide: string;
|
|
positionType: string;
|
|
positionLevel: string;
|
|
positionExecutive: string;
|
|
salary: number | string | null;
|
|
salaryPos: number | string | null;
|
|
salaryCompensation: number | string | null;
|
|
refCommandNo: string;
|
|
templateDoc: string;
|
|
doc: string;
|
|
}
|
|
|
|
interface RequestNoPaidObject {
|
|
profileId?: string;
|
|
date: Date | null;
|
|
detail: string;
|
|
reference: string;
|
|
refCommandDate: Date | null;
|
|
refCommandNo: string;
|
|
}
|
|
|
|
export type { FormSalaryNew, RequestNoPaidObject };
|