1、房屋收费退费
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-19 14:43:45 +08:00
parent 2684133491
commit 89b1c527fa
7 changed files with 291 additions and 38 deletions

View File

@@ -1,4 +1,6 @@
import type {PageQuery, BaseEntity} from '#/api/common';
import type {RoomVO} from "#/api/property/room/model";
import type {CostItemSettingVO} from "#/api/property/costManagement/costItemSetting/model";
export interface HouseChargeVO {
/**
@@ -46,7 +48,16 @@ export interface HouseChargeVO {
* 缴费周期
*/
chargeCycle: number;
/**
* 支付方式
*/
payType: string;
roomVo: RoomVO;
costItemsVo: CostItemSettingVO;
chargeStatus: string;
}
export interface HouseChargeForm extends BaseEntity {
@@ -90,6 +101,10 @@ export interface HouseChargeForm extends BaseEntity {
*/
remark?: string;
/**
* 缴费状态
*/
chargeStatus?: string;
}
export interface HouseChargeQuery extends PageQuery {