1 Star 0 Fork 0

water/goweb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
web_user_id.go 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-09-17 12:45 . add
package webdto
import (
"gitee.com/leijmdas/gobase/goconfig/common/base/basedto"
"gitee.com/leijmdas/goweb/common/webright/webconsts"
"github.com/gin-gonic/gin"
)
type WebUserId struct {
basedto.BaseEntity
*ApiUserResult
Id int64
ShopId int64
ShopMemberId int64
ShopName string
ShopMemberName string
TenantId string
JobId int64
AccountId int64
RootShopId int64
Name string
EmployeeAccountId int64
ShopMemberShortName string
ShopShortName string
Station string
StationShopId int64
CurrencyId int64
TaxId int64
}
func DefaultWebUserId() *WebUserId {
return &WebUserId{
ApiUserResult: NewApiUserResult(),
}
}
func NewWebUserId() *WebUserId {
return DefaultWebUserId()
}
func GetUserId(c *gin.Context) *WebUserId {
if value, exist := c.Get(webconsts.UserIDKey); !exist {
return nil
} else {
if user, ok := (value).(WebUserId); ok {
return &user
} else {
return nil
}
}
}
// SetUserId 设定用户ID
func SetUserId(c *gin.Context, userId *WebUserId) {
c.Set(webconsts.UserIDKey, userId)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/leijmdas/goweb.git
git@gitee.com:leijmdas/goweb.git
leijmdas
goweb
goweb
v1.0.1-dev-02

搜索帮助