55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
package service
|
|
|
|
import (
|
|
"SciencesServer/utils"
|
|
"encoding/json"
|
|
)
|
|
|
|
type Session struct {
|
|
Token string `json:"token"` // token
|
|
UID uint64 `json:"uid"` // 唯一标识ID
|
|
TenantID uint64 `json:"tenant_id"` // 租户ID
|
|
Name string `json:"name"` // 名称
|
|
Mobile string `json:"mobile"` // 手机号码
|
|
IsAdmin bool `json:"is_admin"` // 是否超管
|
|
}
|
|
|
|
func (this *Session) MarshalBinary() ([]byte, error) {
|
|
return json.Marshal(this)
|
|
}
|
|
|
|
func (this *Session) UnmarshalBinary(data []byte) error {
|
|
return utils.FromJSONBytes(data, this)
|
|
}
|
|
|
|
func NewSession() *Session {
|
|
return &Session{}
|
|
}
|
|
|
|
// SessionEnterprise 企业用户
|
|
type SessionEnterprise struct {
|
|
UID uint64 `json:"uid"` // 唯一标识ID
|
|
TenantID uint64 `json:"tenant_id"` // 租户ID
|
|
Token string `json:"token"` // token
|
|
Name string `json:"name"` // 名称
|
|
Mobile string `json:"mobile"` // 手机号码
|
|
Identity int `json:"identity"` // 总身份信息
|
|
SelectIdentity int `json:"select_identity"` // 选中身份信息
|
|
}
|
|
|
|
func (this *SessionEnterprise) UIDToString() string {
|
|
return utils.UintToString(this.UID)
|
|
}
|
|
|
|
func (this *SessionEnterprise) MarshalBinary() ([]byte, error) {
|
|
return json.Marshal(this)
|
|
}
|
|
|
|
func (this *SessionEnterprise) UnmarshalBinary(data []byte) error {
|
|
return utils.FromJSONBytes(data, this)
|
|
}
|
|
|
|
func NewSessionEnterprise() *SessionEnterprise {
|
|
return &SessionEnterprise{}
|
|
}
|