Merge branch 'nice_dev' into develop
This commit is contained in:
commit
4f9f8ecc65
11 changed files with 655 additions and 268 deletions
8
src/modules/13_salary/interface/index/SalaryList.ts
Normal file
8
src/modules/13_salary/interface/index/SalaryList.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
interface DataFilter {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
keyword: string;
|
||||
type: string;
|
||||
}
|
||||
|
||||
export type { DataFilter };
|
||||
14
src/modules/13_salary/interface/response/SalaryList.ts
Normal file
14
src/modules/13_salary/interface/response/SalaryList.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
interface DataPeriodLatest {
|
||||
group1id: string; // Id กลุ่ม1
|
||||
group2id: string; // Id กลุ่ม2
|
||||
effectiveDate: string; // วันที่มีผลบังคับใช้
|
||||
period: string; // ประเภทผัง (SPECIAL->รอบพิเศษ,APR->รอบเมษายน,OCT->รอบตุลาคม)
|
||||
}
|
||||
|
||||
interface DataPeriodQuota {
|
||||
total: number; //จำนวนคนทั้งหมด
|
||||
fifteenPercent: number; //15% ของจำนวนคน
|
||||
chosen: number; //เลือกไปแล้ว
|
||||
remaining: number; //คงเหลือโควตาnumber
|
||||
}
|
||||
export type { DataPeriodLatest, DataPeriodQuota };
|
||||
Loading…
Add table
Add a link
Reference in a new issue