27 lines
1006 B
JavaScript
27 lines
1006 B
JavaScript
|
|
import { declareRequest } from "@cqsjjb/jjb-dva-runtime";
|
||
|
|
|
||
|
|
export const technicalSupportGuaranteeOrganizationList = declareRequest(
|
||
|
|
"technicalSupportGuaranteeOrganizationLoading",
|
||
|
|
"Post > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const technicalSupportGuaranteeOrganizationInfo = declareRequest(
|
||
|
|
"technicalSupportGuaranteeOrganizationLoading",
|
||
|
|
"Get > /emergencyRescue",
|
||
|
|
);
|
||
|
|
export const technicalSupportGuaranteeOrganizationAdd = declareRequest(
|
||
|
|
"technicalSupportGuaranteeOrganizationLoading",
|
||
|
|
"Post > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const technicalSupportGuaranteeOrganizationUpdate = declareRequest(
|
||
|
|
"technicalSupportGuaranteeOrganizationLoading",
|
||
|
|
"Put > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const technicalSupportGuaranteeOrganizationDelete = declareRequest(
|
||
|
|
"technicalSupportGuaranteeOrganizationLoading",
|
||
|
|
"Delete > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const technicalSupportGuaranteeOrganizationDeleteBatch = declareRequest(
|
||
|
|
"technicalSupportGuaranteeOrganizationLoading",
|
||
|
|
"Delete > @/emergencyRescue",
|
||
|
|
);
|