Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
FLL
2025-07-19 14:45:41 +08:00
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 {