mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-23 18:51:31 +08:00
21 lines
845 B
Go
21 lines
845 B
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package entity
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// Category is the golang structure for table category.
|
||
type Category struct {
|
||
Id uint `json:"id" description:""`
|
||
Name string `json:"name" description:"分类名称"`
|
||
ParentId uint `json:"parentId" description:"父级id"`
|
||
CateType uint `json:"cateType" description:"分类类型:1-主题,2-角色,3-情节"`
|
||
CreatedAt *gtime.Time `json:"createdAt" description:""`
|
||
UpdatedAt *gtime.Time `json:"updatedAt" description:""`
|
||
DeletedAt *gtime.Time `json:"deletedAt" description:""`
|
||
}
|