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 doLogin(IPageData pd); /** * 生成验证码信息 * @param pd 页面请求对象 * @return */ public ResponseEntity generateValidateCode(IPageData pd); /** * 验证码校验 * @param pd 页面请求对象 * @return */ public ResponseEntity validate(IPageData pd); }