zhitong.yu
8 天以前 378d781e6f35f89652aa36e079a8b7fc44cea77e
1
2
3
4
5
6
7
8
9
10
import { ResPage, User } from "@/api/interface/index";
import http from "@/api";
 
/**
 * @name 网关管理模块
 */
// 获取网关列表信息
export const getLoragatewayList = (params: User.ReqUserParams) => {
  return http.post<ResPage<User.ResUserList>>(`/Loragateway/FindLoragatewayInfo`, params);
};