4 changed files with 63 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
|
<parent> |
||||
|
<groupId>org.dromara</groupId> |
||||
|
<artifactId>dk-api</artifactId> |
||||
|
<version>${revision}</version> |
||||
|
</parent> |
||||
|
<modelVersion>4.0.0</modelVersion> |
||||
|
|
||||
|
<artifactId>api-sample</artifactId> |
||||
|
|
||||
|
<description>api-sample无人机接口模块 |
||||
|
</description> |
||||
|
|
||||
|
<dependencies> |
||||
|
|
||||
|
<!-- RuoYi Common Core--> |
||||
|
<dependency> |
||||
|
<groupId>org.dromara</groupId> |
||||
|
<artifactId>common-core</artifactId> |
||||
|
</dependency> |
||||
|
</dependencies> |
||||
|
|
||||
|
</project> |
@ -0,0 +1,19 @@ |
|||||
|
package org.dromara.business.api; |
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 预警服务 |
||||
|
* |
||||
|
* @author Lion Li |
||||
|
*/ |
||||
|
public interface RemoteBusinessAlertService { |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 更新此条预警审批时候的状态 |
||||
|
* @param businessId 业务id(预警、工单) |
||||
|
* @param flowStatus 流程状态 |
||||
|
*/ |
||||
|
void updateAlertStatus(String businessId, String flowStatus,Boolean isIllegal,String alertType,String message,String assignName); |
||||
|
} |
@ -0,0 +1,17 @@ |
|||||
|
package org.dromara.business.api; |
||||
|
|
||||
|
/** |
||||
|
* @auther yq |
||||
|
* @data 2025/3/18 |
||||
|
*/ |
||||
|
public interface RemoteBusinessTaskService { |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 更新预约工单状态 |
||||
|
* @param fileId 航线id |
||||
|
* @param jobId 飞行记录id |
||||
|
* @param isJobStatus 飞行状态 |
||||
|
*/ |
||||
|
void updateTaskStatus(String fileId, String jobId,Boolean isJobStatus); |
||||
|
} |
Loading…
Reference in new issue