ทะเบียนประวัติ ==> ข้อมูลผลงาน
This commit is contained in:
parent
a7d629da86
commit
e36a069b20
9 changed files with 417 additions and 1438 deletions
|
|
@ -8,7 +8,7 @@ interface RequestItemsObject {
|
|||
refCommandNo: string;
|
||||
type: string;
|
||||
isDate: boolean | string;
|
||||
isUpload?: boolean|undefined;
|
||||
isUpload?: boolean | undefined;
|
||||
}
|
||||
|
||||
export type { RequestItemsObject };
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ interface RequestItemsObject {
|
|||
certificateType: string;
|
||||
issuer: string;
|
||||
certificateNo: string;
|
||||
issueDate: Date;
|
||||
issueDate: Date | null;
|
||||
expireDate: Date | null;
|
||||
profileId: string;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
interface RequestItemsObject {
|
||||
id?: string;
|
||||
name: string;
|
||||
topic: string;
|
||||
yearly: number | null;
|
||||
|
|
@ -9,8 +10,8 @@ interface RequestItemsObject {
|
|||
dateOrder: Date | null;
|
||||
startDate: Date;
|
||||
endDate: Date;
|
||||
startYear: number;
|
||||
finishYear: number;
|
||||
startYear: number | null;
|
||||
finishYear: number | null;
|
||||
profileId: string;
|
||||
isDate: boolean;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
//ข้อมูล
|
||||
interface ResponseObject {
|
||||
id: string;
|
||||
issuer: string;
|
||||
certificateType: string;
|
||||
certificateNo: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue