hldy_yunwei_vue/src/views/iotManager/manager.api.ts

19 lines
387 B
TypeScript
Raw Normal View History

2026-03-09 17:39:56 +08:00
import { defHttp } from '/@/utils/http/axios';
enum Api {
orgList = '/iot/manager/org/list',
orgAllList = '/iot/manager/org/allList',
}
/**
*
* @param params
*/
export const orgList = (params) => defHttp.get({ url: Api.orgList, params });
/**
*
* @param params
*/
export const orgAllList = (params) => defHttp.get({ url: Api.orgAllList, params });