20 lines
856 B
Go
20 lines
856 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// UserFavorite is the golang structure for table user_favorite.
|
|
type UserFavorite struct {
|
|
Id uint64 `json:"id" orm:"id" description:""` //
|
|
UserId uint64 `json:"userId" orm:"user_id" description:""` //
|
|
ContentId uint64 `json:"contentId" orm:"content_id" description:""` //
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
|
|
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
|
|
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:""` //
|
|
}
|