20 lines
611 B
Go
20 lines
611 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
// Tools 工具目录
|
|
type Tools struct {
|
|
Id int64 `json:"id"`
|
|
ToolKey string `json:"tool_key"`
|
|
ModuleKey string `json:"module_key"`
|
|
Name string `json:"name"`
|
|
Icon string `json:"icon"`
|
|
Description string `json:"description"`
|
|
Sort int `json:"sort"`
|
|
IsEnabled int `json:"is_enabled"`
|
|
IsHot int `json:"is_hot"`
|
|
UsageCount int64 `json:"usage_count"`
|
|
CreatedAt *gtime.Time `json:"created_at"`
|
|
UpdatedAt *gtime.Time `json:"updated_at"`
|
|
}
|