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

123 lines
1.3 KiB
TypeScript

import type { PageQuery, BaseEntity } from '#/api/common';
export interface RentalPlanVO {
/**
* 主键
*/
id: string | number;
/**
* 方案名称
*/
planName: string;
/**
* 租赁周期
*/
rentalPeriod: number;
/**
* 适用场景
*/
scene: string;
/**
* 价格
*/
price: number;
/**
* 状态
*/
state: number;
/**
* 备注
*/
remarks: string;
/**
* 绿植产品包
*/
productList: any[];
}
export interface RentalPlanForm extends BaseEntity {
/**
* 主键
*/
id?: string | number | undefined;
/**
* 方案名称
*/
planName?: string;
/**
* 租赁周期
*/
rentalPeriod?: number;
/**
* 适用场景
*/
scene?: string;
/**
* 价格
*/
price?: number;
/**
* 状态
*/
state?: number;
/**
* 备注
*/
remarks?: string;
/**
* 方案下绿植产品
*/
productList?:any[];
}
export interface RentalPlanQuery extends PageQuery {
/**
* 方案名称
*/
planName?: string;
/**
* 租赁周期
*/
rentalPeriod?: number;
/**
* 适用场景
*/
scene?: string;
/**
* 价格
*/
price?: number;
/**
* 状态
*/
state?: number;
/**
* 备注
*/
remarks?: string;
/**
* 日期范围参数
*/
params?: any;
}