แก้อัพไฟล์
This commit is contained in:
parent
15c1c2038f
commit
e92997302b
13 changed files with 448 additions and 108 deletions
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ interface RequestItemsObject {
|
|||
reference: string;
|
||||
refCommandNo: string;
|
||||
refCommandDate: Date | null;
|
||||
isUpload: boolean;
|
||||
}
|
||||
|
||||
interface MyObjectRef {
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ interface RequestItemsObject {
|
|||
refCommandNo: string;
|
||||
type: string;
|
||||
isDate: boolean | string;
|
||||
isUpload?: boolean|undefined;
|
||||
}
|
||||
|
||||
export type { RequestItemsObject };
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ interface RequestItemsObject {
|
|||
refCommandNo: string;
|
||||
note: string;
|
||||
profileEmployeeId?: string | null;
|
||||
isUpload?: boolean | undefined;
|
||||
}
|
||||
|
||||
export type { RequestItemsObject };
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ interface ResponseObject {
|
|||
profileId: string;
|
||||
type: string;
|
||||
refCommandDate: Date;
|
||||
isUpload: boolean;
|
||||
refCommandNo: string;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ interface ResponseObject {
|
|||
volumeNo: string;
|
||||
refCommandDate: Date | null;
|
||||
refCommandNo: string;
|
||||
isUpload: boolean;
|
||||
note: string;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue