admin-vben5/apps/web-antd/src/api/property/roomBooking/conferenceView/index.ts

21 lines
754 B
TypeScript
Raw Normal View History

2025-07-09 18:18:48 +08:00
import type { getAppointmentListByDateQuery,getAppointmentListByIdQuery } from './model';
import type { PageResult } from '#/api/common';
import { requestClient } from '#/api/request';
/**
*
* @param params
* @returns
*/
export function getAppointmentListByDate(params?: getAppointmentListByDateQuery) {
return requestClient.get<any>('/property/meetbooking/appointment-list', { params });
}
/**
* Id查询已预约会议预约记录列表
* @param params
* @returns
*/
export function getAppointmentListBymeetId(params?: getAppointmentListByIdQuery) {
return requestClient.get<any>('/property/meetbooking/meet-appointment-list', { params });
}