2023-03-08 14:06:14 +08:00
|
|
|
package com.xkrs.service;
|
2023-02-01 14:36:15 +08:00
|
|
|
|
2023-03-08 14:06:14 +08:00
|
|
|
import com.xkrs.model.qo.AllFirePointQo;
|
2023-03-29 15:29:56 +08:00
|
|
|
import com.xkrs.model.qo.UpdateFirePointQo;
|
2023-02-01 14:36:15 +08:00
|
|
|
|
|
|
|
public interface DispatchFirePointService {
|
|
|
|
|
2023-02-03 15:00:07 +08:00
|
|
|
/**
|
2023-03-29 15:29:56 +08:00
|
|
|
* 推送火点到秸秆系统
|
2023-02-03 15:00:07 +08:00
|
|
|
*/
|
2023-03-29 15:29:56 +08:00
|
|
|
String insertFirePoint(AllFirePointQo firePointQo);
|
2023-02-01 14:36:15 +08:00
|
|
|
|
2023-02-03 15:00:07 +08:00
|
|
|
/**
|
2023-03-29 15:29:56 +08:00
|
|
|
* 更新火点状态
|
2023-02-03 15:00:07 +08:00
|
|
|
*/
|
2023-03-29 15:29:56 +08:00
|
|
|
String updateFirePoint(UpdateFirePointQo updateFirePointQo);
|
2023-02-01 14:36:15 +08:00
|
|
|
|
|
|
|
}
|