| 12345678910111213141516171819202122232425262728 |
- package com.java110.web.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<String> doRegister(IPageData pd);
- /**
- * 发送手机验证码
- * @param pd
- * @return
- */
- public ResponseEntity<String> sendTelMessageCode(IPageData pd);
- }
|