Files
novel/internal/model/do/category.go
2024-01-12 18:08:51 +08:00

23 lines
743 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// Category is the golang structure of table nv_category for DAO operations like Where/Data.
type Category struct {
g.Meta `orm:"table:nv_category, do:true"`
Id interface{} //
Name interface{} // 分类名称
ParentId interface{} // 父级id
CateType interface{} // 分类类型1-主题2-角色3-情节
CreatedAt *gtime.Time //
UpdatedAt *gtime.Time //
DeletedAt *gtime.Time //
}