หลักเกณฑ์(ยังไม่สมบูรณ์)

This commit is contained in:
setthawutttty 2024-03-14 17:50:02 +07:00
parent 3b76e636db
commit bae6df1f51
4 changed files with 247 additions and 83 deletions

View file

@ -6,10 +6,28 @@ interface ObjectCharRef {
}
interface ObjectReteRef {
salaryNo: object | null;
salaryMonth: object | null;
salaryDay: object | null;
posType: object|null
posName: object|null
posLevel: object|null
rateOldMin: object|null
groupOld: object|null
rateMaxOld: object|null
groupRateHigh: object|null
rateHighMax: object|null
[key: string]: any;
}
export type { ObjectCharRef, ObjectReteRef };
interface DataOptions {
id:string
name:string
}
interface DataListOptions {
id:string
posDictName:string
posTypeId:string
posTypeName:string
posLevelId:string
posLevelName:number
}
export type { ObjectCharRef, ObjectReteRef,DataOptions,DataListOptions };