2、退费审核 3、房间添加套内面积
This commit is contained in:
130
apps/web-antd/src/api/property/costManagement/houseCharge/model.d.ts
vendored
Normal file
130
apps/web-antd/src/api/property/costManagement/houseCharge/model.d.ts
vendored
Normal file
@@ -0,0 +1,130 @@
|
||||
import type {PageQuery, BaseEntity} from '#/api/common';
|
||||
|
||||
export interface HouseChargeVO {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 房屋
|
||||
*/
|
||||
roomId: string | number;
|
||||
|
||||
/**
|
||||
* 收费项目
|
||||
*/
|
||||
costItemsId: string | number;
|
||||
|
||||
/**
|
||||
* 应收金额
|
||||
*/
|
||||
amountReceivable: number;
|
||||
|
||||
/**
|
||||
* 计费开始时间
|
||||
*/
|
||||
startTime: string;
|
||||
|
||||
/**
|
||||
* 计费结束时间
|
||||
*/
|
||||
endTime: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state: string;
|
||||
|
||||
/**
|
||||
* 说明
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
chargeTime: any[];
|
||||
/**
|
||||
* 缴费周期
|
||||
*/
|
||||
chargeCycle: number;
|
||||
|
||||
}
|
||||
|
||||
export interface HouseChargeForm extends BaseEntity {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 房屋
|
||||
*/
|
||||
roomId?: string | number;
|
||||
|
||||
/**
|
||||
* 收费项目
|
||||
*/
|
||||
costItemsId?: string | number;
|
||||
|
||||
/**
|
||||
* 应收金额
|
||||
*/
|
||||
amountReceivable?: number;
|
||||
|
||||
/**
|
||||
* 计费开始时间
|
||||
*/
|
||||
startTime?: string;
|
||||
|
||||
/**
|
||||
* 计费结束时间
|
||||
*/
|
||||
endTime?: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state?: string;
|
||||
|
||||
/**
|
||||
* 说明
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
}
|
||||
|
||||
export interface HouseChargeQuery extends PageQuery {
|
||||
/**
|
||||
* 房屋
|
||||
*/
|
||||
roomId?: string | number;
|
||||
|
||||
/**
|
||||
* 收费项目
|
||||
*/
|
||||
costItemsId?: string | number;
|
||||
|
||||
/**
|
||||
* 应收金额
|
||||
*/
|
||||
amountReceivable?: number;
|
||||
|
||||
/**
|
||||
* 计费开始时间
|
||||
*/
|
||||
startTime?: string;
|
||||
|
||||
/**
|
||||
* 计费结束时间
|
||||
*/
|
||||
endTime?: string;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
state?: string;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
Reference in New Issue
Block a user