| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package eVVM.apk.ui.login.authentication;
- import java.util.List;
- import eVVM.apk.mvp.IMvpView;
- import eVVM.apk.ui.bean.VerificationCodeBean;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/3
- * Describe: AttctContract
- */
- public class AttctContract {
- public interface View extends IMvpView {
- void attctError(String msg);
- void attctSuccess(VerificationCodeBean data);
- }
- public interface Presenter {
- /***
- *
- * @param userId 用户id 注册成功后返回
- * @param companyName 公司名称
- * @param userName 用户姓名
- * @param idCard 身份证号
- * @param email 邮箱
- * @param roleId 职务
- * @param phoneType 手机类型 0安卓 1ios
- * @param phoneModel 手机型号
- * @param uploadimgpaths 上传图片的路径
- */
- void attct(int userId, String companyName, String userName, String idCard,
- String email, int roleId, int phoneType, String phoneModel, List<String> uploadimgpaths);
- }
- }
|