add 联联平台请求停止充电接口

This commit is contained in:
Lemon
2023-04-25 14:03:09 +08:00
parent c584ff91f4
commit ea34f51849
6 changed files with 130 additions and 2 deletions

View File

@@ -1,11 +1,13 @@
package com.jsowell.thirdparty.service;
import com.jsowell.pile.dto.QueryEquipmentDTO;
import com.jsowell.pile.dto.QueryStartChargeDTO;
import com.jsowell.thirdparty.domain.StationStatsInfo;
import com.jsowell.pile.dto.QueryStationInfoDTO;
import com.jsowell.thirdparty.vo.EquipmentAuthVO;
import com.jsowell.thirdparty.vo.LianLianPageResponse;
import com.jsowell.thirdparty.vo.QueryChargingStatusVO;
import com.jsowell.thirdparty.vo.QueryStopChargeVO;
import java.util.List;
@@ -54,4 +56,11 @@ public interface LianLianService {
* @param startChargeSeq
*/
QueryChargingStatusVO query_equip_charge_status(String startChargeSeq);
/**
* 请求停止充电
* @param dto
* @return
*/
QueryStopChargeVO query_stop_charge(QueryStartChargeDTO dto);
}