liujie
6 小时以前 0f4459e4201fdc19185b7dd03215871f036acd70
ruoyi-service/ruoyi-order/src/main/java/com/ruoyi/order/service/TChargingOrderService.java
@@ -15,6 +15,7 @@
import com.ruoyi.order.dto.*;
import com.ruoyi.order.vo.ChargingOrderListInfoVO;
import com.ruoyi.order.vo.EndOfChargePageInfo;
import com.ruoyi.order.vo.StatisticsOfBatteryVO;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
@@ -108,6 +109,10 @@
    * @param code
    */
   void refund(String code);
   void refund1(String code, BigDecimal money);
   /**
    * 获取充电中的详情
@@ -145,7 +150,7 @@
   List<SixCircleDto> circle(List<Integer> siteIds,LocalDate sixBefore);
   Map<String, Object> countAll(LocalDateTime sixBefore, List<Integer> siteIds);
   Map<String, Object> countAll(List<Integer> siteIds);
    List<Map<String, Object>> getSumByType(LocalDate start,LocalDate end,List<Integer> siteIds);
@@ -197,7 +202,6 @@
   Map<String, Object> qureryPowerLevel(List<Integer> siteIds, ChargingStatisticsQueryDto statisticsQueryDto);
   List<Map<String, Object>> queryOrderCountAndMoneyBySiteIdDate(List<Integer> siteIds);
   List<Map<String, Object>> usersDay(ChargingStatisticsQueryDto statisticsQueryDto);
   List<Map<String, Object>> usersDay1();
@@ -307,4 +311,23 @@
    * @return
    */
   R getNotPaymentChargingOrder();
   /**
    *
    * 手动推送订单给第三方平台
    * @param code
    * @return
    */
   R pushOrderInfo(String code);
   R addChargingOrderSummaryData();
   /**
    * 大屏-新能源汽车电池安全检测次数统计
    */
    R<StatisticsOfBatteryVO> getStatisticsOfBattery();
   BigDecimal getSumDegreeBySiteIds(List<Integer> siteIds);
}