mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-31 00:38:37 +08:00
27 lines
1.3 KiB
Go
27 lines
1.3 KiB
Go
// =================================================================================
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/encoding/gjson"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// SysGenCodes is the golang structure for table sys_gen_codes.
|
|
type SysGenCodes struct {
|
|
Id int64 `json:"id" description:"生成ID"`
|
|
GenType uint `json:"genType" description:"生成类型"`
|
|
VarName string `json:"varName" description:"实体命名"`
|
|
Options *gjson.Json `json:"options" description:"配置选项"`
|
|
DbName string `json:"dbName" description:"数据库名称"`
|
|
TableName string `json:"tableName" description:"主表名称"`
|
|
TableComment string `json:"tableComment" description:"主表注释"`
|
|
DaoName string `json:"daoName" description:"主表dao模型"`
|
|
MasterColumns *gjson.Json `json:"masterColumns" description:"主表字段"`
|
|
Status int `json:"status" description:"生成状态"`
|
|
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
|
|
UpdatedAt *gtime.Time `json:"updatedAt" description:"更新时间"`
|
|
}
|