WxUserService.java 720 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.caimei.service.wechat;
  2. import com.caimei.model.ResponseJson;
  3. import com.caimei.model.vo.WxClubUserVo;
  4. import java.util.Map;
  5. /**
  6. * Description
  7. *
  8. * @author : Aslee
  9. * @date : 2021/7/15
  10. */
  11. public interface WxUserService {
  12. /**
  13. * 获取用户信息
  14. *
  15. * @param mobile
  16. * @param authUserId
  17. * @return
  18. */
  19. ResponseJson<Map<String, Object>> getUserInfo(String mobile, Integer authUserId, Integer clubUserId);
  20. /**
  21. * 发送验证码
  22. */
  23. ResponseJson sendLoginCode(String mobile, Integer authUserId, Integer type);
  24. /**
  25. * 修改密码
  26. */
  27. ResponseJson updatePassword(String mobile, String verifyCode, String password, Integer authUserId);
  28. }