remove checkin out of project & Refactoring code module 01_dashboard
This commit is contained in:
parent
ec80361a81
commit
75c0e27880
9 changed files with 105 additions and 1069 deletions
34
src/modules/01_dashboard/interface/Main.ts
Normal file
34
src/modules/01_dashboard/interface/Main.ts
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
interface InboxList {
|
||||
id: string;
|
||||
subject: string;
|
||||
body: string;
|
||||
receiverUserId: string;
|
||||
payload: Object | null;
|
||||
isOpen: boolean;
|
||||
receiveDate: Date | null;
|
||||
openDate: Date | null;
|
||||
createdFullName?: string;
|
||||
createdAt?: Date;
|
||||
}
|
||||
|
||||
interface InboxDetail {
|
||||
no: string;
|
||||
sender: string;
|
||||
subject: string;
|
||||
body: string;
|
||||
ratingModel: number;
|
||||
receiveDate?: string;
|
||||
payload: Object | null;
|
||||
isOpen: boolean;
|
||||
}
|
||||
|
||||
interface MenuMainList {
|
||||
icon: string;
|
||||
title: string;
|
||||
sub: string;
|
||||
color: string;
|
||||
path: string;
|
||||
active: boolean;
|
||||
}
|
||||
|
||||
export type { InboxList, InboxDetail, MenuMainList };
|
||||
Loading…
Add table
Add a link
Reference in a new issue