|
|
@@ -3,6 +3,7 @@ package com.sckw.payment.service.dubbo;
|
|
|
import com.sckw.core.exception.BusinessException;
|
|
|
import com.sckw.payment.api.dubbo.PaymentDubboService;
|
|
|
import com.sckw.payment.api.model.constant.OrderEnum;
|
|
|
+import com.sckw.payment.api.model.dto.LedgerCount;
|
|
|
import com.sckw.payment.service.KwpLedgerLogisticsService;
|
|
|
import com.sckw.payment.service.KwpLedgerTradeService;
|
|
|
import com.sckw.payment.service.KwpSettlementLogisticsService;
|
|
|
@@ -56,5 +57,10 @@ public class PaymentDubboServiceImpl implements PaymentDubboService {
|
|
|
res.put(OrderEnum.TRADE, trade);
|
|
|
return res;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public LedgerCount countLedger(Long entId) {
|
|
|
+ return new LedgerCount(1, 1, 1, 1);
|
|
|
+ }
|
|
|
}
|
|
|
|