API ดูประวัติโครงสร้าง

This commit is contained in:
setthawutttty 2024-01-31 17:27:12 +07:00
parent 80b40ead85
commit 0b4011437c
5 changed files with 106 additions and 70 deletions

View file

@ -74,6 +74,12 @@ interface HistoryType {
orgRevisionIsDraft: boolean;
orgRevisionCreatedAt: Date | string;
}
interface HistoryPostType {
id: string;
name: string;
lastUpdatedAt: Date;
orgRevisionName: string;
}
interface FormPositionSelect {
positionId: string,
@ -109,5 +115,6 @@ export type {
HistoryType,
ListMenu,
FormPositionSelect,
RowDetailPositions
RowDetailPositions,
HistoryPostType
};