initial commit

This commit is contained in:
zp
2024-01-12 18:08:51 +08:00
commit 00122cc66d
74 changed files with 1957 additions and 0 deletions

View File

@ -0,0 +1,22 @@
// =================================================================================
// 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 //
}