a9ac8c4f748c50cadd68e0f82b12b80253bd6af6.svn-base 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package eVVM.apk.ui.login.authentication;
  2. import java.util.List;
  3. import eVVM.apk.mvp.IMvpView;
  4. import eVVM.apk.ui.bean.VerificationCodeBean;
  5. /**
  6. * Created by Android Studio.
  7. * User: zbb
  8. * Date: 2019/6/3
  9. * Describe: AttctContract
  10. */
  11. public class AttctContract {
  12. public interface View extends IMvpView {
  13. void attctError(String msg);
  14. void attctSuccess(VerificationCodeBean data);
  15. }
  16. public interface Presenter {
  17. /***
  18. *
  19. * @param userId 用户id 注册成功后返回
  20. * @param companyName 公司名称
  21. * @param userName 用户姓名
  22. * @param idCard 身份证号
  23. * @param email 邮箱
  24. * @param roleId 职务
  25. * @param phoneType 手机类型 0安卓 1ios
  26. * @param phoneModel 手机型号
  27. * @param uploadimgpaths 上传图片的路径
  28. */
  29. void attct(int userId, String companyName, String userName, String idCard,
  30. String email, String roleId, int phoneType, String phoneModel, List<String> uploadimgpaths);
  31. }
  32. }