27 lines
922 B
JavaScript
27 lines
922 B
JavaScript
|
|
import { declareRequest } from "@cqsjjb/jjb-dva-runtime";
|
||
|
|
|
||
|
|
export const transportGuaranteeOrganizationList = declareRequest(
|
||
|
|
"transportGuaranteeOrganizationLoading",
|
||
|
|
"Post > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const transportGuaranteeOrganizationInfo = declareRequest(
|
||
|
|
"transportGuaranteeOrganizationLoading",
|
||
|
|
"Get > /emergencyRescue",
|
||
|
|
);
|
||
|
|
export const transportGuaranteeOrganizationAdd = declareRequest(
|
||
|
|
"transportGuaranteeOrganizationLoading",
|
||
|
|
"Post > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const transportGuaranteeOrganizationUpdate = declareRequest(
|
||
|
|
"transportGuaranteeOrganizationLoading",
|
||
|
|
"Put > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const transportGuaranteeOrganizationDelete = declareRequest(
|
||
|
|
"transportGuaranteeOrganizationLoading",
|
||
|
|
"Delete > @/emergencyRescue",
|
||
|
|
);
|
||
|
|
export const transportGuaranteeOrganizationDeleteBatch = declareRequest(
|
||
|
|
"transportGuaranteeOrganizationLoading",
|
||
|
|
"Delete > @/emergencyRescue",
|
||
|
|
);
|