1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| package com.java110.fee.bmo.fee;
|
| import com.alibaba.fastjson.JSONObject;
| import com.java110.dto.fee.PayFeeDataDto;
|
| public interface IFinishFeeNotify {
|
| /**
| * 修改 车辆结束时间
| * @param feeId
| * @param communityId
| */
| void updateCarEndTime(String feeId,String communityId);
|
| /**
| * 修改报修
| * @param feeId
| * @param communityId
| */
| void updateRepair(String feeId,String communityId,String receivedAmount);
|
|
| /**
| * 账户扣款
| * @param paramObj
| * @param feeId
| * @param communityId
| */
| void withholdAccount(JSONObject paramObj, String feeId, String communityId);
|
| /**
| * 账户扣款
| * @param payFeeDataDto
| * @param feeId
| * @param communityId
| */
| void withholdAccount(PayFeeDataDto payFeeDataDto, String feeId, String communityId);
| }
|
|