1、会议室预约
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-08 17:33:42 +08:00
parent b1265fb00c
commit a3c0cbe2a5
10 changed files with 446 additions and 133 deletions

View File

@@ -0,0 +1,12 @@
import type { ReservationForm} from './model';
import { requestClient } from '#/api/request';
/**
* 新增会议管理
* @param data
* @returns void
*/
export function reservationAdd(data: ReservationForm) {
return requestClient.postWithMsg<void>('/property/meetbooking', data);
}

View File

@@ -0,0 +1,59 @@
import type { BaseEntity } from '#/api/common';
export interface ReservationForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
* 会议室id
*/
meetId?: string | number;
/**
* 预约人
*/
person?: string;
/**
* 所属单位
*/
unit?: string;
/**
* 参会人数
*/
personSum?: string;
/**
* 会议主题
*/
conferenceTheme?: string;
/**
* 预约日期
*/
appointmentDate?: string;
/**
* 预约开始时段
*/
appointmentBeginTime?: string;
/**
* 预约结束时段
*/
appointmentEndTime?: string;
/**
* 备注
*/
remark?: string;
/**
* 是否需要增值服务0需要1不需要
*/
attach?: number;
}