wuxw
2022-05-12 4e134e61ede1f8574189af45c810ca365c7c7f9a
service-job/src/main/java/com/java110/job/adapt/IDatabusAdapt.java
old mode 100644 new mode 100755
@@ -16,7 +16,11 @@
package com.java110.job.adapt;
import com.alibaba.fastjson.JSONObject;
import com.java110.dto.businessDatabus.CustomBusinessDatabusDto;
import com.java110.dto.machine.MachineDto;
import com.java110.dto.tempCarFeeConfig.TempCarPayOrderDto;
import com.java110.entity.order.Business;
import com.java110.po.machine.MachineRecordPo;
import com.java110.vo.ResultVo;
import java.util.List;
@@ -34,7 +38,7 @@
     * @param business   当前处理业务
     * @param businesses 所有业务信息
     */
    public void execute(Business business, List<Business> businesses);
    public void execute(Business business, List<Business> businesses) throws Exception;
    /**
     * 开门接口
@@ -43,6 +47,8 @@
     */
    ResultVo openDoor(JSONObject paramIn);
    ResultVo getQRcode(JSONObject reqJson);
    /**
     * 重启设备
     *
@@ -51,4 +57,23 @@
     * }
     */
    ResultVo restartMachine(JSONObject reqJson);
    ResultVo reSendToIot(JSONObject reqJson);
    ResultVo getTempCarFeeOrder(TempCarPayOrderDto tempCarPayOrderDto);
    ResultVo notifyTempCarFeeOrder(TempCarPayOrderDto tempCarPayOrderDto);
    /**
     * 手工 送数据
     * @param customBusinessDatabusDto
     */
    void customExchange(CustomBusinessDatabusDto customBusinessDatabusDto);
    ResultVo customCarInOut(JSONObject reqJson);
    ResultVo payVideo(MachineDto machineDto);
    ResultVo heartbeatVideo(JSONObject reqJson);
}