- ปรับเมนู (ใหม่)
- ปรับคำสั่ง
This commit is contained in:
parent
ed7c6e9f07
commit
ada9644df7
19 changed files with 448 additions and 15 deletions
10
src/modules/01_metadataNew/interface/index/Main.ts
Normal file
10
src/modules/01_metadataNew/interface/index/Main.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
interface DataOption {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { Pagination, DataOption };
|
||||
14
src/modules/01_metadataNew/interface/request/Main.ts
Normal file
14
src/modules/01_metadataNew/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
interface DataSumCalendarObject {
|
||||
id: number;
|
||||
monthFull: String;
|
||||
count: number;
|
||||
color: String;
|
||||
}
|
||||
|
||||
interface DataListsObject {
|
||||
id: number;
|
||||
count: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { DataSumCalendarObject, DataListsObject };
|
||||
Loading…
Add table
Add a link
Reference in a new issue