แก้อัพไฟล์

This commit is contained in:
setthawutttty 2025-01-29 09:56:04 +07:00
parent 15c1c2038f
commit e92997302b
13 changed files with 448 additions and 108 deletions

View file

@ -83,6 +83,41 @@ interface Request {
topic: string;
}
interface InsigniasType {
id: string;
createdAt: Date;
createdUserId: string;
lastUpdatedAt: Date;
lastUpdateUserId: string;
createdFullName: string;
lastUpdateFullName: string;
name: string;
isActive: boolean;
insignias: InsigniasTypeSub[];
}
interface InsigniasTypeSub {
id:string;
createdAt:Date;
createdUserId:string;
lastUpdatedAt:Date;
lastUpdateUserId:string;
createdFullName:string;
lastUpdateFullName:string;
name:string;
shortName:string;
level:string;
isActive:string;
note:string;
insigniaTypeId:string;
}
interface ResFileData {
downloadUrl: string;
fileName: string;
path: string;
pathname: string;
}
export type {
Pagination,
DataOption,
@ -97,4 +132,8 @@ export type {
DataOptionEducation,
DataOptionEducationLevel,
Request,
InsigniasType,
InsigniasTypeSub,
ResFileData
};

View file

@ -21,6 +21,7 @@ interface RequestItemsObject {
reference: string;
refCommandNo: string;
refCommandDate: Date | null;
isUpload: boolean;
}
interface MyObjectRef {