OauthService.java 506 B

12345678910111213141516171819202122232425262728
  1. package com.nosum.deliver.auth.service;
  2. import com.nosum.common.base.domain.Result;
  3. import com.nosum.deliver.auth.domain.vo.AuthUserVO;
  4. /**
  5. * @description:
  6. * @author: sumbytes
  7. * @date: 2019/09/04 08:58
  8. */
  9. public interface OauthService {
  10. /**
  11. * 保存管理员
  12. */
  13. Result login(AuthUserVO authUserVO);
  14. /**
  15. * 保存管理员
  16. */
  17. Result updatePassword(AuthUserVO authUserVO);
  18. /**
  19. * 管理员注册
  20. */
  21. Result registerAdmin(AuthUserVO authUserVO);
  22. }