import { get, post } from "./http"; const prefix = 'devicesApi/site/'; export default { getAllStation: (params) => { return get(prefix + 'listSite', params); }, searchStation: (params) => { return get(prefix + 'searchSite', params); }, getStationRate: (params) => { return get(prefix + 'getSiteRate', params); }, getNearestSite: (params) => { return get(prefix + 'getNearestSite', params); } }