@@ -9,7 +9,7 @@ import com.alibaba.android.arouter.facade.template.IProvider
|
||||
/**
|
||||
* @author xiaoyuzhou
|
||||
* @date 2021/9/16 4:40 下午
|
||||
* 功能提供者基础
|
||||
* 功能提供者基础,带有UI相关的逻辑的需要继承这个
|
||||
*/
|
||||
interface IMoGoFunctionProvider : IProvider {
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.mogo.eagle.core.function.api.base
|
||||
|
||||
import com.alibaba.android.arouter.facade.template.IProvider
|
||||
|
||||
/**
|
||||
*@author xiaoyuzhou
|
||||
*@date 2021/9/18 11:41 上午
|
||||
* 处理没有页面的服务及交互逻辑的提供者
|
||||
*/
|
||||
interface IMoGoFunctionServerProvider : IProvider {
|
||||
|
||||
}
|
||||
@@ -5,6 +5,7 @@ import androidx.fragment.app.FragmentActivity;
|
||||
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
import com.mogo.eagle.core.data.map.MogoLatLng;
|
||||
import com.mogo.eagle.core.function.api.base.IMoGoFunctionProvider;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -12,7 +13,7 @@ import java.util.List;
|
||||
* @author donghongyu
|
||||
* @date 12/10/20 1:36 PM
|
||||
*/
|
||||
public interface IMogoSmallMapProvider extends IProvider {
|
||||
public interface IMogoSmallMapProvider extends IMoGoFunctionProvider {
|
||||
|
||||
/**
|
||||
* 初始化网约车容器
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.mogo.eagle.core.function.api.notice
|
||||
|
||||
import com.mogo.eagle.core.function.api.base.IMoGoFunctionServerProvider
|
||||
|
||||
/**
|
||||
* @author xiaoyuzhou
|
||||
* @date 2021/9/18 11:25 上午
|
||||
* 处理云端下发通知、公告类的逻辑的接口
|
||||
*/
|
||||
interface IMoGoNoticeProvider : IMoGoFunctionServerProvider {
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user