แก้ไขตำแหน่งเงินเดือน
This commit is contained in:
parent
e03d2a84a5
commit
cc0c600174
8 changed files with 255 additions and 108 deletions
|
|
@ -6,4 +6,31 @@ interface DataFilter {
|
|||
pageSize: number;
|
||||
}
|
||||
|
||||
export type { DataFilter };
|
||||
interface FormDataSalary {
|
||||
commandCode: string; //ประเภทคำสั่ง
|
||||
commandNo: string; //เลขที่คำสั่ง
|
||||
commandYear: number | null; //ปี
|
||||
commandDateAffect: Date | null; //วันที่มีผล
|
||||
commandDateSign: Date | null; //วันที่ลงนาม
|
||||
posNoAbb: string; //ตัวย่อเลขที่ตำแหน่ง
|
||||
posNo: string; //เลขที่ตำแหน่ง
|
||||
positionName: string; //ตำแหน่ง
|
||||
positionType: string; //ประเภทตำแหน่ง, กลุ่มงาน
|
||||
positionLevel: string; //ระดับตำแหน่ง, ระดับชั้นงาน
|
||||
positionCee: string; //ระดับซี
|
||||
positionLine: string; // สายงาน
|
||||
positionPathSide: string; //ด้าน/สาขา
|
||||
positionExecutive: string; //ตำแหน่งทางการบริหาร
|
||||
amount: number | null; //เงินเดือน
|
||||
amountSpecial: number | null; //เงินค่าตอบแทนพิเศษ
|
||||
positionSalaryAmount: number | null; //เงินประจำตำแหน่ง
|
||||
mouthSalaryAmount: number | null; //เงินค่าตอบแทนรายเดือน
|
||||
orgRoot: string; //หน่วยงาน
|
||||
orgChild1: string; //ส่วนราชการระดับ 1
|
||||
orgChild2: string; //ส่วนราชการระดับ 2
|
||||
orgChild3: string; //ส่วนราชการระดับ 3
|
||||
orgChild4: string; //ส่วนราชการระดับ 4
|
||||
remark: string; //หมายเหตุstring
|
||||
}
|
||||
|
||||
export type { DataFilter, FormDataSalary };
|
||||
|
|
|
|||
|
|
@ -23,4 +23,51 @@ interface DataSalaryPos {
|
|||
type: string;
|
||||
}
|
||||
|
||||
export type { DataSalaryPos };
|
||||
interface DataPosition {
|
||||
amount: number;
|
||||
amountSpecial: number;
|
||||
commandCode: string;
|
||||
commandDateAffect: string;
|
||||
commandDateSign: string;
|
||||
commandId: string;
|
||||
commandName: string;
|
||||
commandNo: string;
|
||||
commandYear: number;
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
dateGovernment: string;
|
||||
id: string;
|
||||
isDelete: boolean;
|
||||
isEdit: boolean;
|
||||
isEntry: boolean;
|
||||
isGovernment: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
mouthSalaryAmount: number;
|
||||
order: number;
|
||||
orgChild1: string;
|
||||
orgChild2: string;
|
||||
orgChild3: string;
|
||||
orgChild4: string;
|
||||
orgRoot: string;
|
||||
posNo: string;
|
||||
posNoAbb: string;
|
||||
positionCee: string;
|
||||
positionExecutive: string;
|
||||
positionLevel: string;
|
||||
positionLine: string;
|
||||
positionName: string;
|
||||
positionPathSide: string;
|
||||
positionSalaryAmount: number;
|
||||
positionType: string;
|
||||
profileEmployeeId: string;
|
||||
profileId: string;
|
||||
refId: number;
|
||||
remark: string;
|
||||
salaryId: string;
|
||||
status: string;
|
||||
}
|
||||
|
||||
export type { DataSalaryPos, DataPosition };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue