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
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
@@ -59,3 +59,7 @@ export function carChargeUpdate(data: CarChargeForm) {
|
||||
export function carChargeRemove(id: ID | IDS) {
|
||||
return requestClient.deleteWithMsg<void>(`/property/carCharge/${id}`);
|
||||
}
|
||||
|
||||
export function carChargeRefund(data: CarChargeForm) {
|
||||
return requestClient.postWithMsg<void>('/property/carCharge/returnFee', data);
|
||||
}
|
||||
|
@@ -16,6 +16,7 @@ export interface CarChargeVO {
|
||||
*/
|
||||
personId: string | number;
|
||||
|
||||
chargeItem:string
|
||||
/**
|
||||
* 楼层
|
||||
*/
|
||||
@@ -55,6 +56,10 @@ export interface CarChargeVO {
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue: string;
|
||||
amountReceivable?:any;
|
||||
chargeStatus:any;
|
||||
payType:any;
|
||||
chargeCycle:any
|
||||
|
||||
}
|
||||
|
||||
|
@@ -58,4 +58,9 @@ export function costMeterWaterUpdate(data: CostMeterWaterForm) {
|
||||
*/
|
||||
export function costMeterWaterRemove(id: ID | IDS) {
|
||||
return requestClient.deleteWithMsg<void>(`/property/meterWater/${id}`);
|
||||
}
|
||||
|
||||
// 根据业主id查询
|
||||
export function ultimoWater(id: ID | IDS) {
|
||||
return requestClient.get<any>(`/property/meterWater/ultimoWater/${id}`);
|
||||
}
|
@@ -51,6 +51,8 @@ export interface CostMeterWaterVO {
|
||||
* 搜索值
|
||||
*/
|
||||
searchValue: string;
|
||||
costType:string;
|
||||
userId:string;
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user