IRegisterServiceSMO.java 513 B

12345678910111213141516171819202122232425262728
  1. package com.java110.web.smo;
  2. import com.java110.core.context.IPageData;
  3. import org.springframework.http.ResponseEntity;
  4. /**
  5. *
  6. * 注册业务处理接口
  7. *
  8. * Created by wuxw on 2019/3/23.
  9. */
  10. public interface IRegisterServiceSMO {
  11. /**
  12. * 用户注册
  13. * @param pd
  14. * @return
  15. */
  16. public ResponseEntity<String> doRegister(IPageData pd);
  17. /**
  18. * 发送手机验证码
  19. * @param pd
  20. * @return
  21. */
  22. public ResponseEntity<String> sendTelMessageCode(IPageData pd);
  23. }