update จัดการ web services
This commit is contained in:
parent
a5f27c342b
commit
daec5d06ec
4 changed files with 392 additions and 111 deletions
|
|
@ -31,4 +31,9 @@ interface DataOption {
|
|||
name: string;
|
||||
}
|
||||
|
||||
export type { ListWebServices, ListApi, DataOption, ItemsDropdown };
|
||||
interface Pagination {
|
||||
page: number;
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
export type { ListWebServices, ListApi, DataOption, ItemsDropdown, Pagination };
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
import type { D } from "@fullcalendar/core/internal-common";
|
||||
|
||||
interface ResListWebServices {
|
||||
id: string;
|
||||
topic: string;
|
||||
|
|
@ -26,4 +28,49 @@ interface ResApHistory {
|
|||
ipApi: string;
|
||||
}
|
||||
|
||||
export type { ResListWebServices, ResApiName, ResApHistory };
|
||||
interface ListSystems {
|
||||
code: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
interface ListApiManages {
|
||||
code: string;
|
||||
createdAt: Date;
|
||||
id: string;
|
||||
isActive: boolean;
|
||||
lastUpdatedAt: Date;
|
||||
methodApi: string;
|
||||
name: string;
|
||||
pathApi: string;
|
||||
system: string;
|
||||
}
|
||||
|
||||
interface DataSystems {
|
||||
description: string;
|
||||
isMain: boolean;
|
||||
tb: string;
|
||||
propertys: Propertys[];
|
||||
}
|
||||
|
||||
interface Propertys {
|
||||
comment: string;
|
||||
key: string;
|
||||
propertyName: string;
|
||||
type: string;
|
||||
}
|
||||
|
||||
interface DataAttributes {
|
||||
propertyKey: string;
|
||||
tbName: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
ResListWebServices,
|
||||
ResApiName,
|
||||
ResApHistory,
|
||||
ListSystems,
|
||||
ListApiManages,
|
||||
DataSystems,
|
||||
Propertys,
|
||||
DataAttributes,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue