first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
27
src/interface/response/dashboard/dashboard.ts
Normal file
27
src/interface/response/dashboard/dashboard.ts
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
interface ResponseInbox {
|
||||
body: string;
|
||||
createdAt: Date;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
id: string;
|
||||
isOpen: boolean;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: Date;
|
||||
openDate: Date | null;
|
||||
payload: string;
|
||||
receiveDate: Date;
|
||||
receiverUserId: string;
|
||||
subject: string;
|
||||
}
|
||||
|
||||
interface DataInbox {
|
||||
no: string;
|
||||
sender: string;
|
||||
subject: string;
|
||||
timereceive: Date;
|
||||
body: string;
|
||||
ratingModel: number;
|
||||
}
|
||||
|
||||
export type { ResponseInbox, DataInbox };
|
||||
14
src/interface/response/manage/prefix.ts
Normal file
14
src/interface/response/manage/prefix.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
//ข้อมูล คำนำหน้าชื่อ
|
||||
interface ResponsePrefixHistoryObject {
|
||||
createdAt?: Date;
|
||||
createdFullName: String;
|
||||
createdUserId: String;
|
||||
id: String;
|
||||
isActive: Boolean;
|
||||
lastUpdateFullName: String;
|
||||
lastUpdateUserId: String;
|
||||
lastUpdatedAt?: Date;
|
||||
name: String;
|
||||
}
|
||||
|
||||
export type { ResponsePrefixHistoryObject };
|
||||
Loading…
Add table
Add a link
Reference in a new issue