โครงสร้างแสดงดาวน์โหลดรายงาน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-11 17:37:40 +07:00
parent 96d6e470f8
commit 293250ac03
4 changed files with 29 additions and 14 deletions

View file

@ -7,6 +7,12 @@ interface DataOption {
name: string;
}
interface DataOrgRevision {
id: string;
name: string;
orgRevisionCreatedAt: string;
}
interface DataDocument {
name: string;
val: string;
@ -158,4 +164,5 @@ export type {
FormPositionSelectRef,
NewPagination,
DataDocument,
DataOrgRevision,
};

View file

@ -40,7 +40,7 @@ interface OrgTree {
}
interface OrgRevision {
orgRevisionCreatedAt: string | null;
orgRevisionCreatedAt: Date | null;
orgRevisionId: string;
orgRevisionIsCurrent: boolean;
orgRevisionIsDraft: boolean;