fusenapi/model/gmodel_gen/fs_guest_gen.go

22 lines
1.1 KiB
Go
Raw Normal View History

2023-06-14 10:17:45 +00:00
package model
2023-06-15 03:05:33 +00:00
import (
"gorm.io/gorm"
)
2023-06-14 10:17:45 +00:00
type FsGuest struct {
GuestId int64 `gorm:"primary_key" json:"guest_id"` // 游客ID
2023-06-16 02:58:43 +00:00
AuthKey *string `gorm:"-" json:"auth_key"` // jwt token
Status *int64 `gorm:"-" json:"status"` // 1正常 0不正常
IsDel *int64 `gorm:"-" json:"is_del"` // 是否删除 1删除
CreatedAt *int64 `gorm:"-" json:"created_at"` // 添加时间
UpdatedAt *int64 `gorm:"-" json:"updated_at"` // 更新时间
IsOpenRender *int64 `gorm:"-" json:"is_open_render"` // 是否打开个性化渲染1开启0关闭
IsThousandFace *int64 `gorm:"-" json:"is_thousand_face"` // 是否已经存在千人千面1存在0不存在
IsLowRendering *int64 `gorm:"-" json:"is_low_rendering"` // 是否开启低渲染模型渲染
IsRemoveBg *int64 `gorm:"-" json:"is_remove_bg"` // 用户上传logo是否去除背景
2023-06-14 10:17:45 +00:00
}
type FsGuestModel struct{ db *gorm.DB }
func NewFsGuestModel(db *gorm.DB) *FsGuestModel { return &FsGuestModel{db} }