add:1.增加后台管理强制取消任务接口。2.修改设置车辆冰量和水量逻辑。3.增加OTA远程更新功能。4.补充国际化。5.增加调度任务不存在同步取消数据库任务。
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package org.nl.api.schedule.vehicle.api;
|
||||
|
||||
import cn.hutool.http.HttpResponse;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import org.nl.api.schedule.task.core.ScheduleAPICreateTaskParam;
|
||||
|
||||
/**
|
||||
* 调度车辆API
|
||||
* @author dsh
|
||||
* 2026/4/30
|
||||
*/
|
||||
public interface ScheduleVehicleAPI {
|
||||
|
||||
/**
|
||||
* 根据车号获取车辆信息
|
||||
* @param vehicleId
|
||||
* @return
|
||||
*/
|
||||
JSONObject getVehicleIPByNumber(String vehicleId);
|
||||
|
||||
}
|
||||
@@ -49,6 +49,13 @@ public interface TaskAPI {
|
||||
*/
|
||||
WebResponse cancelTask(String taskCode);
|
||||
|
||||
/**
|
||||
* 强制取消任务
|
||||
* @param taskCode
|
||||
* @return
|
||||
*/
|
||||
WebResponse forceCancelTask(String taskCode);
|
||||
|
||||
/**
|
||||
* 根据房间号查询任务信息
|
||||
* @param room
|
||||
|
||||
Reference in New Issue
Block a user