dev
This commit is contained in:
@@ -60,4 +60,9 @@ public class MogoServicePaths {
|
||||
* 消息中心
|
||||
*/
|
||||
public static final String PATH_WINDOW_MANAGER = "/windowmanger/api";
|
||||
|
||||
/**
|
||||
* 卡片控制
|
||||
*/
|
||||
public static final String PATH_CARD_MANAGER = "/cardmanager/api";
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.mogo.service.cardmanager;
|
||||
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/**
|
||||
* @author congtaowang
|
||||
* @since 2020-01-06
|
||||
* <p>
|
||||
* 卡片管理
|
||||
*/
|
||||
public interface IMogoCardManager extends IProvider {
|
||||
|
||||
/**
|
||||
* 切换卡片
|
||||
*
|
||||
* @param cardType
|
||||
*/
|
||||
void switch2( String cardType );
|
||||
}
|
||||
@@ -48,4 +48,9 @@ public interface ModuleType {
|
||||
* 小智、天气、时间等
|
||||
*/
|
||||
int TYPE_EXTENSION = 8;
|
||||
|
||||
/**
|
||||
* 操作快捷入口
|
||||
*/
|
||||
int TYPE_ENTRANCE = 9;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user