hldy_yunwei_vue/src/views/iot/ConfigLog/configlog.api.ts

13 lines
212 B
TypeScript
Raw Normal View History

2025-08-08 11:20:00 +08:00
import { defHttp } from '/@/utils/http/axios';
enum Api {
list = '/iot/syncConfigLog/list',
}
/**
*
* @param params
*/
export const list = (params) => defHttp.get({ url: Api.list, params });