This commit is contained in:
suyl
2021-08-31 16:25:22 +08:00
parent 48125eeb41
commit 572f7206b5
2 changed files with 24 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import (
"bytes"
"encoding/base64"
"errors"
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
"regexp"
"strings"
"time"
@@ -495,3 +496,13 @@ func DeletedTokenInfoWithoutParam(authInfo *AuthInfo) (err error) {
}
return err
}
type UserInfo struct {
model.User
WxInfo string `json:"wxInfo"`
BrandMaps string `json:"brandMaps"`
}
func GetUserInfo(ctx *jxcontext.Context) (userInfo *UserInfo, err error) {
return nil, err
}