เพิ่ม ui เมนูรายการคำสั่งและ Template
This commit is contained in:
parent
6c72c90524
commit
3b9df73811
8 changed files with 45 additions and 0 deletions
5
src/modules/05_command/interface/index/Main.ts
Normal file
5
src/modules/05_command/interface/index/Main.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
export type { Pagination };
|
||||
7
src/modules/05_command/interface/request/Main.ts
Normal file
7
src/modules/05_command/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
interface DataListsObject {
|
||||
id: number;
|
||||
count: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { DataListsObject };
|
||||
1
src/modules/05_command/interface/response/Main.ts
Normal file
1
src/modules/05_command/interface/response/Main.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export type {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue