UI รายการผังบัญชีเงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-15 18:01:15 +07:00
parent 7a8668271b
commit d1eab09ee4
7 changed files with 851 additions and 6 deletions

View file

@ -2,5 +2,16 @@ interface DataOption {
id: string;
name: string;
}
interface Salary {
id: string;
salaryType: string;
posType: string;
posLevel: string;
isActive: boolean;
date: Date; //ให้ไว้ ณ วันที่
startDate: Date;
endDate: Date;
detail: string;
}
export type { DataOption };
export type { Salary };