2026-07-21 16:48:02 +08:00
|
|
|
import { declareRequest } from "@cqsjjb/jjb-dva-runtime";
|
|
|
|
|
|
|
|
|
|
export const fireRescueTeamInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /fireResource/rescueTeam/{id}`,
|
|
|
|
|
);
|
|
|
|
|
export const fireControlRoomInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /fireResource/controlRoom/{id}`,
|
|
|
|
|
);
|
|
|
|
|
export const firePumpRoomInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /fireResource/pumpRoom/{id}`,
|
|
|
|
|
);
|
|
|
|
|
export const fireWaterSourceInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /fireResource/waterSource/{id}`,
|
|
|
|
|
);
|
|
|
|
|
export const firePointInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /fireCheck/firePoint/getInfoById/{id}`,
|
|
|
|
|
);
|
|
|
|
|
export const sensorDeviceInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /iotalarm/sensorDevice/{id}`,
|
|
|
|
|
);
|
2026-07-22 10:38:03 +08:00
|
|
|
export const eightWorkInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /eightwork/eightworkInfo/{id}`,
|
|
|
|
|
);
|
|
|
|
|
export const eightWorkSupplementaryInfo = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Post > @/eightwork/eightworkSupplementaryInfo/list`,
|
|
|
|
|
);
|
|
|
|
|
export const eightWorkMeasuresLogs = declareRequest(
|
|
|
|
|
"biFullLoading",
|
|
|
|
|
`Get > /eightwork/measuresLogs/listAll/{workId}`,
|
|
|
|
|
);
|