แก้อัพไฟล์

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 {

View file

@ -8,6 +8,7 @@ interface RequestItemsObject {
refCommandNo: string;
type: string;
isDate: boolean | string;
isUpload?: boolean|undefined;
}
export type { RequestItemsObject };

View file

@ -14,6 +14,7 @@ interface RequestItemsObject {
refCommandNo: string;
note: string;
profileEmployeeId?: string | null;
isUpload?: boolean | undefined;
}
export type { RequestItemsObject };

View file

@ -14,6 +14,7 @@ interface ResponseObject {
profileId: string;
type: string;
refCommandDate: Date;
isUpload: boolean;
refCommandNo: string;
}

View file

@ -20,6 +20,7 @@ interface ResponseObject {
volumeNo: string;
refCommandDate: Date | null;
refCommandNo: string;
isUpload: boolean;
note: string;
}