Merge branch 'develop' of gitee.com:fusenpack/fusenapi into develop

This commit is contained in:
laodaming 2023-08-24 12:00:51 +08:00
commit 48fb3ec4aa

View File

@ -1,9 +1,8 @@
package gmodel package gmodel
import ( import (
"time"
"gorm.io/gorm" "gorm.io/gorm"
"time"
) )
// fs_user_info 用户信息表 // fs_user_info 用户信息表
@ -13,7 +12,6 @@ type FsUserInfo struct {
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户 ID UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户 ID
GuestId *int64 `gorm:"index;default:0;" json:"guest_id"` // 访客 ID GuestId *int64 `gorm:"index;default:0;" json:"guest_id"` // 访客 ID
Metadata *[]byte `gorm:"default:'';" json:"metadata"` // 元数据,json格式 Metadata *[]byte `gorm:"default:'';" json:"metadata"` // 元数据,json格式
MetaKey1 *string `gorm:"default:'';" json:"meta_key1"` // 需要关键信息查询的自定义属性1,可以动态增加
Ctime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ctime"` // Ctime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ctime"` //
Utime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"utime"` // Utime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"utime"` //
} }