package com.java110.boot.smo; import com.java110.core.context.IPageData; import org.springframework.http.ResponseEntity; /** * * 注册业务处理接口 * * Created by wuxw on 2019/3/23. */ public interface IRegisterServiceSMO { /** * 用户注册 * @param pd * @return */ public ResponseEntity doRegister(IPageData pd); /** * 发送手机验证码 * @param pd * @return */ public ResponseEntity sendTelMessageCode(IPageData pd); /** * 验证码校验 * @param pd 页面请求对象 * @return */ public ResponseEntity validate(IPageData pd); /** * 加载地区 * @param pd 页面请求对象 * @return */ public ResponseEntity loadArea(IPageData pd); }