| | |
| | | import com.supersavedriving.user.modular.system.model.AppUser; |
| | | import com.supersavedriving.user.modular.system.util.ResultUtil; |
| | | import com.supersavedriving.user.modular.system.warpper.SignInToRegister; |
| | | import com.supersavedriving.user.modular.system.warpper.SignInToRegisterWarpper; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | public interface IAppUserService extends IService<AppUser> { |
| | | |
| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil signInToRegister(SignInToRegister signInToRegister) throws Exception; |
| | | ResultUtil<SignInToRegisterWarpper> signInToRegister(SignInToRegister signInToRegister) throws Exception; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 校验token获取用户信息 |
| | | * @return |
| | | */ |
| | | Integer getUserByRequest() throws Exception; |
| | | } |