update จัดการ web services

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-08-13 14:28:58 +07:00
parent a5f27c342b
commit daec5d06ec
4 changed files with 392 additions and 111 deletions

View file

@ -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 };

View file

@ -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,
};