|
|
@@ -2,6 +2,7 @@ package com.sckw.payment.api.dubbo;
|
|
|
|
|
|
import com.sckw.payment.api.model.constant.OrderEnum;
|
|
|
import com.sckw.payment.api.model.dto.LedgerCount;
|
|
|
+import com.sckw.payment.api.model.dto.SettlementMoney;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
@@ -35,4 +36,38 @@ public interface PaymentDubboService {
|
|
|
*/
|
|
|
LedgerCount countLedger(Long entId);
|
|
|
|
|
|
+ //工作台金额统计数据四个接口
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 销售统计,以当前日向前推一月、一周
|
|
|
+ *
|
|
|
+ * @param countType 1-周 2-月
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ SettlementMoney countSell(Long entId, Integer countType);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 采购统计,以当前日向前推一月、一周
|
|
|
+ *
|
|
|
+ * @param countType 1-周 2-月
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ SettlementMoney countPurchase(Long entId, Integer countType);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 承运统计,以当前日向前推一月、一周
|
|
|
+ *
|
|
|
+ * @param countType 1-周 2-月
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ SettlementMoney countCarrier(Long entId, Integer countType);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 托运统计,以当前日向前推一月、一周
|
|
|
+ *
|
|
|
+ * @param countType 1-周 2-月
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ SettlementMoney countShipper(Long entId, Integer countType);
|
|
|
+
|
|
|
}
|