Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
165 lines
1.7 KiB
TypeScript
165 lines
1.7 KiB
TypeScript
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;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
state: string | number;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
createTime: string;
|
|
|
|
quantity: number;
|
|
|
|
meetAttachId: string;
|
|
}
|
|
|
|
export interface AttachForm extends BaseEntity {
|
|
/**
|
|
* 主键
|
|
*/
|
|
id?: string | number;
|
|
|
|
/**
|
|
* 会议室id
|
|
*/
|
|
meetId?: string | number;
|
|
|
|
/**
|
|
* 产品名称
|
|
*/
|
|
projectName?: string;
|
|
|
|
/**
|
|
* 单价
|
|
*/
|
|
price?: number;
|
|
|
|
/**
|
|
* 单位
|
|
*/
|
|
unit?: string;
|
|
|
|
/**
|
|
* 类型
|
|
*/
|
|
type?: string;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
state?: string | number;
|
|
|
|
}
|
|
|
|
export interface AttachQuery extends PageQuery {
|
|
/**
|
|
* 会议室id
|
|
*/
|
|
meetId?: string | number;
|
|
|
|
/**
|
|
* 产品名称
|
|
*/
|
|
projectName?: string;
|
|
|
|
/**
|
|
* 单价
|
|
*/
|
|
price?: number;
|
|
|
|
/**
|
|
* 单位
|
|
*/
|
|
unit?: string;
|
|
|
|
/**
|
|
* 类型
|
|
*/
|
|
type?: string;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
state?: string | number;
|
|
|
|
/**
|
|
* 日期范围参数
|
|
*/
|
|
params?: any;
|
|
}
|
|
|
|
export interface conferenceAddServices extends BaseEntity {
|
|
/**
|
|
* 主键
|
|
*/
|
|
id: string | number;
|
|
|
|
/**
|
|
* 会议室id
|
|
*/
|
|
meetId: string | number;
|
|
|
|
/**
|
|
* 产品名称
|
|
*/
|
|
projectName: string;
|
|
|
|
/**
|
|
* 单价
|
|
*/
|
|
price: number;
|
|
|
|
/**
|
|
* 单位
|
|
*/
|
|
unit: string;
|
|
|
|
/**
|
|
* 类型
|
|
*/
|
|
type: string;
|
|
|
|
/**
|
|
* 状态
|
|
*/
|
|
state: string | number;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
createTime: string;
|
|
}
|