代码拉取完成,页面将自动刷新
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)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。