120 lines
1.2 KiB
TypeScript
120 lines
1.2 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: number;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
createTime: string;
|
||
|
|
||
|
}
|
||
|
|
||
|
export interface AttachForm extends BaseEntity {
|
||
|
/**
|
||
|
* 主键
|
||
|
*/
|
||
|
id?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 会议室id
|
||
|
*/
|
||
|
meetId?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 产品名称
|
||
|
*/
|
||
|
projectName?: string;
|
||
|
|
||
|
/**
|
||
|
* 单价
|
||
|
*/
|
||
|
price?: number;
|
||
|
|
||
|
/**
|
||
|
* 单位
|
||
|
*/
|
||
|
unit?: string;
|
||
|
|
||
|
/**
|
||
|
* 类型
|
||
|
*/
|
||
|
type?: string;
|
||
|
|
||
|
/**
|
||
|
* 状态
|
||
|
*/
|
||
|
state?: number;
|
||
|
|
||
|
}
|
||
|
|
||
|
export interface AttachQuery extends PageQuery {
|
||
|
/**
|
||
|
* 会议室id
|
||
|
*/
|
||
|
meetId?: string | number;
|
||
|
|
||
|
/**
|
||
|
* 产品名称
|
||
|
*/
|
||
|
projectName?: string;
|
||
|
|
||
|
/**
|
||
|
* 单价
|
||
|
*/
|
||
|
price?: number;
|
||
|
|
||
|
/**
|
||
|
* 单位
|
||
|
*/
|
||
|
unit?: string;
|
||
|
|
||
|
/**
|
||
|
* 类型
|
||
|
*/
|
||
|
type?: string;
|
||
|
|
||
|
/**
|
||
|
* 状态
|
||
|
*/
|
||
|
state?: number;
|
||
|
|
||
|
/**
|
||
|
* 日期范围参数
|
||
|
*/
|
||
|
params?: any;
|
||
|
}
|