88e030b7
王彪总
init project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
package com.java110.api.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);
/**
* 验证码校验
* @param pd 页面请求对象
* @return
*/
public ResponseEntity<String> validate(IPageData pd);
/**
* 加载地区
* @param pd 页面请求对象
* @return
*/
public ResponseEntity<String> loadArea(IPageData pd);
}
|