รายละเอียดรับโอน
This commit is contained in:
parent
b4ac343685
commit
1a7b4bf418
11 changed files with 1283 additions and 142 deletions
|
|
@ -28,10 +28,10 @@ interface menuType {
|
|||
}
|
||||
|
||||
interface notiType {
|
||||
id: number;
|
||||
id: string;
|
||||
sender: string;
|
||||
body: string;
|
||||
timereceive: string;
|
||||
timereceive: Date;
|
||||
}
|
||||
|
||||
interface optionType {
|
||||
|
|
@ -257,7 +257,7 @@ const menuList = readonly<any[]>([
|
|||
role: "placement",
|
||||
},
|
||||
{
|
||||
key: 6.10,
|
||||
key: 6.1,
|
||||
label: "รายการอื่นๆ" /* */,
|
||||
path: "other",
|
||||
role: "placement",
|
||||
|
|
|
|||
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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue