13 lines
200 B
TypeScript
13 lines
200 B
TypeScript
export interface getAppointmentListByDateQuery {
|
|
/**
|
|
* 日期
|
|
*/
|
|
appointmentDate?: string;
|
|
}
|
|
export interface getAppointmentListByIdQuery {
|
|
/**
|
|
* 会议室id
|
|
*/
|
|
meetId?: string;
|
|
}
|