clone code
This commit is contained in:
parent
c9597d1e38
commit
d57bcd1719
362 changed files with 104804 additions and 0 deletions
50
src/modules/04_registry/interface/request/Salary.ts
Normal file
50
src/modules/04_registry/interface/request/Salary.ts
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
interface DataProps {
|
||||
row: RequestItemsObject;
|
||||
rowIndex: number;
|
||||
}
|
||||
|
||||
//ข้อมูล
|
||||
interface RequestItemsObject {
|
||||
id: string;
|
||||
date: Date;
|
||||
amount: number;
|
||||
positionSalaryAmount: number;
|
||||
mouthSalaryAmount: number;
|
||||
oc: string;
|
||||
ocId: string;
|
||||
position: string;
|
||||
positionId: string;
|
||||
posNo: string;
|
||||
posNoId: string;
|
||||
positionLine: string;
|
||||
positionLineId: string;
|
||||
positionPathSide: string;
|
||||
positionPathSideId: string;
|
||||
positionType: string;
|
||||
positionTypeId: string;
|
||||
positionLevel: string;
|
||||
positionLevelId: string;
|
||||
positionExecutive: string;
|
||||
positionExecutiveId: string;
|
||||
positionExecutiveSide: string;
|
||||
positionExecutiveSideId: string;
|
||||
salaryClass: string;
|
||||
salaryRef: string;
|
||||
createdFullName: string;
|
||||
createdAt: Date;
|
||||
}
|
||||
|
||||
//columns
|
||||
interface Columns {
|
||||
[index: number]: {
|
||||
name: String;
|
||||
align: String;
|
||||
label: String;
|
||||
sortable: Boolean;
|
||||
field: String;
|
||||
headerStyle: String;
|
||||
style: String;
|
||||
};
|
||||
}
|
||||
|
||||
export type { RequestItemsObject, Columns, DataProps };
|
||||
Loading…
Add table
Add a link
Reference in a new issue