wxr
2022-11-24 2af932533ef851bf983385244e9912976dbd4daa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.mm.android.deviceaddmodule.contract;
 
import com.mm.android.deviceaddmodule.base.IBasePresenter;
import com.mm.android.deviceaddmodule.base.IBaseView;
 
public interface DevSecCodeConstract {
    interface Presenter extends IBasePresenter {
        void validate();
    }
 
    interface View extends IBaseView<Presenter> {
        String getDeviceSecCode();     //从输入框中获取设备安全码
 
        void goErrorTipPage(int errorCode);              //错误提示页
 
        void goBindSuceesPage();            //进入绑定成功页
 
        void goOtherUserBindTipPage();
 
        void completeAction();              //完成退出
 
        void goDevLoginPage();       //设备登录页
 
        void goDevSecCodePage();    //设备安全码页
    }
}