This commit is contained in:
2025-06-18 16:50:58 +08:00
parent 1262d4c745
commit 06a0e3649d
46 changed files with 3048 additions and 545 deletions

View File

@@ -1,11 +1,6 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface RoomBookingVO {
/**
* id
*/
id: string | number;
/**
* 会议室id
*/
@@ -71,16 +66,6 @@ export interface RoomBookingVO {
*/
checkInEndTime: string;
/**
* 审批人
*/
approver: string;
/**
* 审批时间
*/
approverTime: string;
/**
* 评价
*/
@@ -96,11 +81,6 @@ export interface RoomBookingVO {
*/
addServices: number;
/**
* 数据状态(模拟删除 0未删除 1删除
*/
dataStatus: number;
}
export interface RoomBookingForm extends BaseEntity {
@@ -174,16 +154,6 @@ export interface RoomBookingForm extends BaseEntity {
*/
checkInEndTime?: string;
/**
* 审批人
*/
approver?: string;
/**
* 审批时间
*/
approverTime?: string;
/**
* 评价
*/
@@ -199,11 +169,6 @@ export interface RoomBookingForm extends BaseEntity {
*/
addServices?: number;
/**
* 数据状态(模拟删除 0未删除 1删除
*/
dataStatus?: number;
}
export interface RoomBookingQuery extends PageQuery {
@@ -272,31 +237,21 @@ export interface RoomBookingQuery extends PageQuery {
*/
checkInEndTime?: string;
/**
* 审批人
*/
approver?: string;
/**
* 审批时间
*/
approverTime?: string;
/**
* 评价
*/
evaluate?: string;
/**
* 备注
*/
remark?: string;
/**
* 是否需要增值服务0需要1不需要
*/
addServices?: number;
/**
* 数据状态(模拟删除 0未删除 1删除
*/
dataStatus?: number;
/**
* 日期范围参数
*/