Merge remote-tracking branch 'origin/dev_MogoAP_eagle-1030_211020_8.0.14' into dev_MogoAP_eagle-1030_211020_8.0.14

This commit is contained in:
董宏宇
2021-11-03 20:59:25 +08:00
27 changed files with 727 additions and 130 deletions

View File

@@ -4,10 +4,10 @@ import com.mogo.eagle.core.function.api.base.IMoGoFunctionServerProvider;
/**
* @author Jing
* @description 云公告监听者
* @description
* @since: 10/27/21
*/
public interface IMoGoNoticeProvider extends IMoGoFunctionServerProvider {
void feedBackNoticeTraffic(String infoId, String sn, int accept);
void requestAccidentInfo(String infoId, String sn,NoticeNetCallBack callBack);
}

View File

@@ -0,0 +1,12 @@
package com.mogo.eagle.core.function.api.notice;
import com.mogo.eagle.core.data.notice.NoticeTrafficStyleInfo;
/**
* @author Jing
* @description 网络请求回调
* @since: 11/3/21
*/
public interface NoticeNetCallBack {
void callBackWithResult(NoticeTrafficStyleInfo trafficInfo);
}