package com.mm.android.deviceaddmodule.contract; import com.mm.android.deviceaddmodule.base.IBasePresenter; import com.mm.android.deviceaddmodule.base.IBaseView; public interface HubApGuide1Constract { interface Presenter extends IBasePresenter { void checkDevIntroductionInfo(String deviceModel); } interface View extends IBaseView { void updateTip(String tipImg, String tipTxt,String helpTxt); void showInfoView(); } }