| Line 1... |
Line 1... |
| 1 |
package com.spice.profitmandi.service.recharge;
|
1 |
package com.spice.profitmandi.service.recharge;
|
| 2 |
|
2 |
|
| - |
|
3 |
import java.util.List;
|
| - |
|
4 |
import java.util.Map;
|
| - |
|
5 |
|
| 3 |
import org.springframework.stereotype.Service;
|
6 |
import org.springframework.stereotype.Service;
|
| 4 |
|
7 |
|
| - |
|
8 |
import com.spice.profitmandi.common.enumuration.ProviderBalanceFrom;
|
| 5 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
9 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 6 |
import com.spice.profitmandi.common.model.RechargeCommissionRequest;
|
10 |
import com.spice.profitmandi.common.model.RechargeCommissionRequest;
|
| 7 |
import com.spice.profitmandi.common.model.RechargeCredential;
|
11 |
import com.spice.profitmandi.common.model.RechargeCredential;
|
| 8 |
import com.spice.profitmandi.common.model.RechargeRequest;
|
12 |
import com.spice.profitmandi.common.model.RechargeRequest;
|
| 9 |
import com.spice.profitmandi.common.model.RechargeResponse;
|
13 |
import com.spice.profitmandi.common.model.RechargeResponse;
|
| Line 18... |
Line 22... |
| 18 |
RechargeCredential thinkWalnutDigitalRechargeEnquiryCredential, int retailerId, String requestId)
|
22 |
RechargeCredential thinkWalnutDigitalRechargeEnquiryCredential, int retailerId, String requestId)
|
| 19 |
throws ProfitMandiBusinessException;
|
23 |
throws ProfitMandiBusinessException;
|
| 20 |
public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
|
24 |
public void createRechargeCommission(RechargeCommissionRequest rechargeCommissionRequest) throws ProfitMandiBusinessException;
|
| 21 |
public void updateRechargeCommission(int operatorId, int providerId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
|
25 |
public void updateRechargeCommission(int operatorId, int providerId, String amountTypeString, float amount) throws ProfitMandiBusinessException;
|
| 22 |
public void addCommissionToWallet();
|
26 |
public void addCommissionToWallet();
|
| - |
|
27 |
public float checkBalance(String oxigenRechargeTransactionUrl, String oxigenRechargeAuthKey, RechargeCredential rechargeCredential, int providerId, ProviderBalanceFrom providerBalanceFrom) throws ProfitMandiBusinessException;
|
| - |
|
28 |
public void createRechargeProviderCreditWallet(int providerId, float amount, String receiveDateTimeString) throws ProfitMandiBusinessException;
|
| - |
|
29 |
public List<Map<String, Object>> getRechargeProvidersBalance(String oxigenRechargeTransactionUrl, String oxigenRechargeAuthKey, RechargeCredential rechargeCredential) throws ProfitMandiBusinessException;
|
| 23 |
}
|
30 |
}
|