1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| import { ResPage, User } from "@/api/interface/index";
| import http from "@/api";
|
| /**
| * @name 信息记录管理模块
| */
| // 获取信息记录列表信息
| export const getMessageHistoryList = (params: User.ReqUserParams) => {
| return http.post<ResPage<User.ResUserList>>(`/MessageHistory/FindMessageInfo`, params);
| };
|
| // 下发语音
| export const sendMessage = (params: User.ReqUserParams) => {
| return http.post(`/MessageHistory/sendMessage`, params);
| };
|
|