feat: 初始化绿植养护租赁管理页面
This commit is contained in:
114
apps/web-antd/src/api/property/rentalPlan/model.d.ts
vendored
Normal file
114
apps/web-antd/src/api/property/rentalPlan/model.d.ts
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
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;
|
||||
|
||||
}
|
||||
|
||||
export interface RentalPlanForm extends BaseEntity {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 方案名称
|
||||
*/
|
||||
planName?: string;
|
||||
|
||||
/**
|
||||
* 租赁周期
|
||||
*/
|
||||
rentalPeriod?: number;
|
||||
|
||||
/**
|
||||
* 适用场景
|
||||
*/
|
||||
scene?: string;
|
||||
|
||||
/**
|
||||
* 价格
|
||||
*/
|
||||
price?: number;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remarks?: string;
|
||||
|
||||
}
|
||||
|
||||
export interface RentalPlanQuery extends PageQuery {
|
||||
/**
|
||||
* 方案名称
|
||||
*/
|
||||
planName?: string;
|
||||
|
||||
/**
|
||||
* 租赁周期
|
||||
*/
|
||||
rentalPeriod?: number;
|
||||
|
||||
/**
|
||||
* 适用场景
|
||||
*/
|
||||
scene?: string;
|
||||
|
||||
/**
|
||||
* 价格
|
||||
*/
|
||||
price?: number;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remarks?: string;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
Reference in New Issue
Block a user