27 lines
970 B
JavaScript
27 lines
970 B
JavaScript
|
|
import { declareRequest } from "@cqsjjb/jjb-dva-runtime";
|
||
|
|
|
||
|
|
export const communicationGuaranteeOrganizationList = declareRequest(
|
||
|
|
"communicationGuaranteeOrganizationLoading",
|
||
|
|
"Post > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const communicationGuaranteeOrganizationInfo = declareRequest(
|
||
|
|
"communicationGuaranteeOrganizationLoading",
|
||
|
|
"Get > /emergencyRescue",
|
||
|
|
);
|
||
|
|
export const communicationGuaranteeOrganizationAdd = declareRequest(
|
||
|
|
"communicationGuaranteeOrganizationLoading",
|
||
|
|
"Post > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const communicationGuaranteeOrganizationUpdate = declareRequest(
|
||
|
|
"communicationGuaranteeOrganizationLoading",
|
||
|
|
"Put > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const communicationGuaranteeOrganizationDelete = declareRequest(
|
||
|
|
"communicationGuaranteeOrganizationLoading",
|
||
|
|
"Delete > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const communicationGuaranteeOrganizationDeleteBatch = declareRequest(
|
||
|
|
"communicationGuaranteeOrganizationLoading",
|
||
|
|
"Delete > @/emergencyRescue",
|
||
|
|
);
|