รายการเงินเดือน
This commit is contained in:
parent
9955bc4fe0
commit
42badd9978
3 changed files with 105 additions and 36 deletions
|
|
@ -12,6 +12,38 @@ interface DataPeriodQuota {
|
|||
remaining: number; //คงเหลือโควตาnumber
|
||||
}
|
||||
|
||||
interface DataRound {
|
||||
effectiveDate: string;
|
||||
id: string;
|
||||
isActive: boolean;
|
||||
period: string;
|
||||
revisionId: string;
|
||||
status: string;
|
||||
year: number;
|
||||
}
|
||||
|
||||
interface DataAgency {
|
||||
ancestorDNA: string;
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
id: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
orgChild1s: any[];
|
||||
orgRevision: any[];
|
||||
orgRevisionId: string;
|
||||
orgRootCode: string;
|
||||
orgRootFax: string;
|
||||
orgRootName: string;
|
||||
orgRootOrder: number;
|
||||
orgRootPhoneEx: string;
|
||||
orgRootPhoneIn: string;
|
||||
orgRootRank: string;
|
||||
orgRootShortName: string;
|
||||
}
|
||||
|
||||
interface DataPerson {
|
||||
amount: number;
|
||||
child1: string;
|
||||
|
|
@ -42,4 +74,10 @@ interface DataPerson {
|
|||
root: string;
|
||||
rootId: string;
|
||||
}
|
||||
export type { DataPeriodLatest, DataPeriodQuota, DataPerson };
|
||||
export type {
|
||||
DataPeriodLatest,
|
||||
DataPeriodQuota,
|
||||
DataRound,
|
||||
DataAgency,
|
||||
DataPerson,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue