21 lines
431 B
TypeScript
21 lines
431 B
TypeScript
interface RowList {
|
|
id: string;
|
|
date: Date | null;
|
|
reference: string;
|
|
detail: string;
|
|
refCommandNo: string;
|
|
refCommandDate: Date | null;
|
|
}
|
|
|
|
interface ObjectSalaryRef {
|
|
date: object | null;
|
|
posNo: object | null;
|
|
position: object | null;
|
|
typePosition: object | null;
|
|
levelPosition: object | null;
|
|
salary: object | null;
|
|
doc: object | null;
|
|
|
|
[key: string]: any;
|
|
}
|
|
export type { RowList, ObjectSalaryRef };
|