Files
admin-vben5/apps/web-antd/src/api/property/roomBooking/conferenceSettings/model.d.ts

390 lines
4.4 KiB
TypeScript
Raw Normal View History

2025-07-04 17:56:14 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface MeetVO {
/**
*
*/
id: string | number;
/**
*
*/
name: string;
/**
*
*/
location: string;
/**
*
*/
personNumber: number;
/**
*
*/
2025-07-07 17:30:51 +08:00
baseService: string;
2025-07-04 17:56:14 +08:00
/**
*
*/
basePrice: number;
/**
*
*/
attach: number;
/**
2025-07-07 17:30:51 +08:00
*
2025-07-04 17:56:14 +08:00
*/
2025-07-07 17:30:51 +08:00
principals: string;
2025-07-04 17:56:14 +08:00
/**
2025-07-07 17:30:51 +08:00
*
2025-07-04 17:56:14 +08:00
*/
2025-07-07 17:30:51 +08:00
descs: string;
2025-07-04 17:56:14 +08:00
/**
2025-07-07 17:30:51 +08:00
*
2025-07-04 17:56:14 +08:00
*/
2025-07-07 17:30:51 +08:00
phoneNo: string;
/**
*
*/
isCheck: string;
/**
*
*/
openHours: string;
/**
*
*/
status: string;
/**
*
*/
expenseType: string;
/**
*
*/
picture: string;
2025-07-04 17:56:14 +08:00
}
export interface MeetForm extends BaseEntity {
/**
*
*/
id?: string | number;
/**
*
*/
name?: string;
/**
*
*/
location?: string;
/**
*
*/
personNumber?: number;
/**
*
*/
baseServiceId?: string | number;
/**
*
*/
basePrice?: number;
/**
*
*/
attach?: number;
/**
* id
*/
createById?: string | number;
/**
* id
*/
updateById?: string | number;
/**
*
*/
searchValue?: string;
2025-07-07 17:30:51 +08:00
/**
*
*/
principals: string;
/**
*
*/
descs: string;
/**
*
*/
phoneNo: string;
/**
*
*/
isCheck: string;
/**
*
*/
openHours: string;
/**
*
*/
status: string;
/**
*
*/
expenseType: string;
/**
*
*/
picture: string;
2025-07-04 17:56:14 +08:00
}
export interface MeetQuery extends PageQuery {
/**
*
*/
name?: string;
/**
*
*/
location?: string;
/**
*
*/
personNumber?: number;
/**
*
*/
baseServiceId?: string | number;
/**
*
*/
basePrice?: number;
/**
*
*/
attach?: number;
/**
* id
*/
createById?: string | number;
/**
* id
*/
updateById?: string | number;
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
2025-07-07 17:30:51 +08:00
/**
*
*/
principals: string;
/**
*
*/
descs: string;
/**
*
*/
phoneNo: string;
/**
*
*/
isCheck: string;
/**
*
*/
openHours: string;
/**
*
*/
status: string;
/**
*
*/
expenseType: string;
/**
*
*/
picture: string;
2025-07-04 17:56:14 +08:00
}
2025-07-05 17:47:26 +08:00
export interface conferenceSettingsDetail extends BaseEntity {
/**
*
*/
id: string | number;
/**
*
*/
name: string;
/**
*
*/
location: string;
2025-07-07 17:30:51 +08:00
locationName: string;
2025-07-05 17:47:26 +08:00
/**
*
*/
personNumber: number;
/**
*
*/
baseServiceId: string | number;
2025-07-08 17:33:42 +08:00
baseService: string;
2025-07-05 17:47:26 +08:00
/**
*
*/
basePrice: number;
/**
*
*/
attach: number;
/**
* id
*/
createById: string | number;
/**
* id
*/
updateById: string | number;
/**
*
*/
searchValue: string;
2025-07-07 17:30:51 +08:00
/**
*
*/
principals: string;
2025-07-08 17:33:42 +08:00
principalsName: string;
2025-07-07 17:30:51 +08:00
/**
*
*/
descs: string;
/**
*
*/
phoneNo: string;
/**
*
*/
isCheck: string;
/**
*
*/
openHours: string;
/**
*
*/
status: string;
/**
*
*/
expenseType: string;
/**
*
*/
picture: string;
2025-07-05 17:47:26 +08:00
}
2025-07-08 17:33:42 +08:00
export interface MeetBo{
/**
*
*/
name?: string;
/**
*
*/
location?: string;
/**
*
*/
personNumber?: number;
/**
*
*/
baseServiceId?: string | number;
/**
*
*/
basePrice?: number;
/**
*
*/
attach?: number;
/**
* id
*/
createById?: string | number;
/**
* id
*/
updateById?: string | number;
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
/**
*
*/
openHours?: string;
}