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

165 lines
1.7 KiB
TypeScript
Raw Normal View History

2025-06-23 09:27:28 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface AttachVO {
/**
*
*/
id: string | number;
/**
* id
*/
meetId: string | number;
/**
*
*/
projectName: string;
/**
*
*/
price: number;
/**
*
*/
unit: string;
/**
*
*/
type: string;
/**
*
*/
2025-07-05 17:47:26 +08:00
state: string | number;
2025-06-23 09:27:28 +08:00
/**
*
*/
createTime: string;
quantity: number;
meetAttachId: string;
2025-06-23 09:27:28 +08:00
}
export interface AttachForm extends BaseEntity {
/**
*
*/
id?: string | number;
/**
* id
*/
meetId?: string | number;
/**
*
*/
projectName?: string;
/**
*
*/
price?: number;
/**
*
*/
unit?: string;
/**
*
*/
type?: string;
/**
*
*/
2025-07-05 17:47:26 +08:00
state?: string | number;
2025-06-23 09:27:28 +08:00
}
export interface AttachQuery extends PageQuery {
/**
* id
*/
meetId?: string | number;
/**
*
*/
projectName?: string;
/**
*
*/
price?: number;
/**
*
*/
unit?: string;
/**
*
*/
type?: string;
/**
*
*/
2025-07-05 17:47:26 +08:00
state?: string | number;
2025-06-23 09:27:28 +08:00
/**
*
*/
params?: any;
}
2025-07-04 17:56:14 +08:00
export interface conferenceAddServices extends BaseEntity {
/**
*
*/
id: string | number;
/**
* id
*/
meetId: string | number;
/**
*
*/
projectName: string;
/**
*
*/
price: number;
/**
*
*/
unit: string;
/**
*
*/
type: string;
/**
*
*/
2025-07-05 17:47:26 +08:00
state: string | number;
2025-07-04 17:56:14 +08:00
/**
*
*/
createTime: string;
}