新增 华为Vin启动充电

This commit is contained in:
Lemon
2024-01-15 13:49:19 +08:00
parent 65465b7c7c
commit fffbe85efd
5 changed files with 131 additions and 6 deletions

View File

@@ -7,6 +7,7 @@ import com.jsowell.pile.dto.QueryStartChargeDTO;
import com.jsowell.pile.dto.QueryStationInfoDTO;
import com.jsowell.pile.dto.huawei.DeliverEquipBusinessDTO;
import com.jsowell.pile.dto.huawei.ReceiveDeliverDTO;
import com.jsowell.pile.dto.huawei.VinStartChargeDTO;
import com.jsowell.thirdparty.lianlian.dto.CommonParamsDTO;
import com.jsowell.thirdparty.zhongdianlian.dto.ZDLGetTokenDTO;
@@ -185,4 +186,17 @@ public interface HuaWeiService {
* @return
*/
Map<String, String> receiveDeliverEquipBusinessPolicyResult(ReceiveDeliverDTO dto);
/**
* vin启动充电
* 平台 <-- 华为
*
* insert_start_charge
*
* @param dto
* @return
* @throws Exception
*/
Map<String, String> vinStartCharge(VinStartChargeDTO dto) throws Exception;
}