Files
sgw-owner-app/controller/PortController.ts
2025-12-10 19:49:54 +07:00

7 lines
211 B
TypeScript

import { api } from "@/config";
import { API_GET_ALL_PORT } from "@/constants";
export async function queryPorts(body?: Model.SearchThingBody) {
return api.post<Model.PortResponse>(API_GET_ALL_PORT, body);
}