service.xpcool.com/internal/model/entity/content.go

21 lines
917 B
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// Content is the golang structure for table content.
type Content struct {
Id uint64 `json:"id" orm:"id" description:""` //
Title string `json:"title" orm:"title" description:""` //
Body string `json:"body" orm:"body" description:""` //
Status int `json:"status" orm:"status" 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:""` //
}