21 lines
754 B
TypeScript
21 lines
754 B
TypeScript
|
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 });
|
||
|
}
|