UNPKG

afdi-ambition-fbim-fe

Version:

3D组态BIM编辑器

38 lines (37 loc) 1.3 kB
/**physicalPoint */ export declare function usePhysicalPointApi(): { /** * thing/(PhysicalPoint)表控制层-page * @param data.currentPage * @param data.pageSize * @param data.deviceNumber */ PhysicalPoint_PageGET(data: { currentPage: number | string; pageSize: number | string; deviceNumber: string; }, config?: {}): Promise<IResponsePagePhysicalPointVO>; /** * thing/(PhysicalPoint)表控制层-add */ PhysicalPoint_AddPOST(data: IPhysicalPointDTO, config?: {}): Promise<IResponseString>; /** * thing/(PhysicalPoint)表控制层-edit */ PhysicalPoint_EditPOST(data: IPhysicalPointEditDTO, config?: {}): Promise<IResponseString>; /** * thing/(PhysicalPoint)表控制层-delete */ PhysicalPoint_DeletePOST(data: number[], config?: {}): Promise<IResponseString>; /** * thing/(PhysicalPoint)表控制层-getPointByDeviceNumber * @param data.number */ PhysicalPoint_GetPointByDeviceNumberGET(data: { number: string; }, config?: {}): Promise<IResponseListPhysicalPointVO>; /** * thing/(PhysicalPoint)表控制层-getByPointIds */ PhysicalPoint_GetByPointIdsPOST(data: number[], config?: {}): Promise<IResponseListPhysicalPointVO>; };