ปรับ popup history

This commit is contained in:
setthawutttty 2024-01-26 15:20:32 +07:00
parent 9e1386c052
commit 0a4aa8384a
2 changed files with 207 additions and 87 deletions

View file

@ -40,18 +40,40 @@ interface FormAgencyRef {
tel: object | null;
[key: string]: any;
}
interface FormPositionRef {
prefixNo: object | null;
positionNo: object | null;
[key: string]: any;
}
interface FormDateTimeRef {
dateTime: object | null;
[key: string]: any;
}
interface FormNewStructureRef {
orgRevisionName: object | null;
type: object | null;
[key: string]: any;
}
export type { Pagination, DataOption, FormDataAgency, FormDataPosition, FormAgencyRef, FormPositionRef, FormDateTimeRef,FormDataNewStructure,FormNewStructureRef };
interface HistoryType {
orgRevisionId: string
orgRevisionName: string
orgRevisionIsCurrent: boolean
orgRevisionIsDraft: boolean
orgRevisionCreatedAt: any
}
export type {
Pagination,
DataOption,
FormDataAgency,
FormDataPosition,
FormAgencyRef,
FormPositionRef,
FormDateTimeRef,
FormDataNewStructure,
FormNewStructureRef,
HistoryType
};