Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package com.ubt.jimu.diy.contract;
import com.ubt.jimu.diy.model.DiyModel;
import com.ubtech.presenter.BasePresenter;
import com.ubtech.view.BaseView;
import java.util.List;
/* loaded from: classes.dex */
public interface OfficialDiyContract {
public interface Presenter extends BasePresenter {
void queryOfficialDiy(boolean z, int i, int i2);
}
public interface View extends BaseView<Presenter> {
void loadCompleted();
void loadError();
void showOfficialDiy(List<DiyModel> list, int i);
}
}

View File

@@ -0,0 +1,28 @@
package com.ubt.jimu.diy.contract;
import com.ubt.jimu.base.db.diy.DiyDBModel;
import com.ubt.jimu.transport.model.TransportFile;
import com.ubt.jimu.transport3.model.DiyModelAction;
import com.ubtech.presenter.BasePresenter;
import com.ubtech.view.BaseView;
import java.util.List;
/* loaded from: classes.dex */
public interface UserDiyHomeContract {
public interface Presenter extends BasePresenter {
void getDiyModelActions(String str, int i, String str2, Integer num);
void updateModel(DiyDBModel diyDBModel);
}
public interface View extends BaseView<Presenter> {
void onGetServerActionListFailed(Throwable th);
void onGetServerActionListSuccess(List<DiyModelAction> list);
void onServerDeleteActions(List<DiyModelAction> list);
void onStartDownload(List<TransportFile> list);
}
}

View File

@@ -0,0 +1,37 @@
package com.ubt.jimu.diy.contract;
import com.ubt.jimu.base.db.diy.DiyDBModel;
import com.ubt.jimu.transport.model.TransportFile;
import com.ubtech.presenter.BasePresenter;
import com.ubtech.view.BaseView;
import java.util.List;
/* loaded from: classes.dex */
public interface UserDiyListContract {
public interface Presenter extends BasePresenter {
void deleteModels(List<DiyDBModel> list);
void getDiyModels(String str);
void getLocalDiyModels(String str);
void getModelActionFiles(DiyDBModel diyDBModel);
void getModelFiles(DiyDBModel diyDBModel);
void saveOrUpdateModel(DiyDBModel diyDBModel, TransportFile transportFile);
}
public interface View extends BaseView<Presenter> {
void go2Unity(DiyDBModel diyDBModel);
void onDownloadModelFilesError(Throwable th);
void onLoadDiyModels(List<DiyDBModel> list);
void onLoadDiyModelsFailed();
void onStartDownload();
}
}