1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.java110.web.smo;
|
| import com.java110.core.context.IPageData;
| import org.springframework.http.ResponseEntity;
|
| /**
| * Created by wuxw on 2019/3/20.
| */
| public interface ILoginServiceSMO {
|
| /**
| * 登录接口
| * @param pd 页面请求对象
| * @return
| */
| public ResponseEntity<String> doLogin(IPageData pd);
| }
|
|