ทะเบียนประวัติ => ข้อมูลผลงานและเครื่องราชฯ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-08-16 15:35:15 +07:00
parent 0e290d0c94
commit a268461792
6 changed files with 232 additions and 137 deletions

View file

@ -0,0 +1,41 @@
interface ResListSalary {
amount: number;
createdAt: string;
createdFullName: string;
createdUserId: string;
date: string;
id: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string;
mouthSalaryAmount: number;
order: number;
posNo: string;
position: string;
positionExecutive: string;
positionLevel: string;
positionLine: string;
positionPathSide: string;
positionSalaryAmount: number;
positionType: string;
profileEmployeeId: null | string;
profileId: string;
refCommandNo: string;
templateDoc: string;
}
interface ResType {
id: string;
posTypeName: string;
posTypeRank: number;
posLevels: PosLevel[];
}
interface PosLevel {
id: string;
posLevelAuthority: null;
posLevelName: string;
posLevelRank: number;
}
export type { ResListSalary, ResType };