蛋蛋星球-客户端
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

37 linhas
880 B

  1. package hdl
  2. import (
  3. "applet/app/e"
  4. "applet/app/md"
  5. "applet/app/svc"
  6. "github.com/gin-gonic/gin"
  7. )
  8. // UserInfo
  9. // @Summary 用户信息
  10. // @Tags 用户信息
  11. // @Description 用户信息
  12. // @Accept json
  13. // @Produce json
  14. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  15. // @Success 200 {object} md.UserInfoResp "具体数据"
  16. // @Failure 400 {object} md.Response "具体错误"
  17. // @Router /api/v1/userInfo [get]
  18. func UserInfo(c *gin.Context) {
  19. user := svc.GetUser(c)
  20. res := md.UserInfoResp{
  21. Phone: user.Phone,
  22. Nickname: user.Phone,
  23. InviteCode: user.SystemInviteCode,
  24. IsBindExtend: "0",
  25. }
  26. if user.CustomInviteCode != "" {
  27. res.InviteCode = user.CustomInviteCode
  28. }
  29. if user.ParentUid > 0 {
  30. res.IsBindExtend = "1"
  31. }
  32. e.OutSuc(c, res, nil)
  33. return
  34. }