mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-10-11 20:43:44 +08:00
发布代码生成、更新20+表单组件,优化数据字典,gf版本更新到2.3.1
This commit is contained in:
28
server/internal/model/entity/sys_gen_curd_demo.go
Normal file
28
server/internal/model/entity/sys_gen_curd_demo.go
Normal file
@@ -0,0 +1,28 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysGenCurdDemo is the golang structure for table sys_gen_curd_demo.
|
||||
type SysGenCurdDemo struct {
|
||||
Id int64 `json:"id" description:"ID"`
|
||||
CategoryId int64 `json:"categoryId" description:"分类ID"`
|
||||
Title string `json:"title" description:"标题"`
|
||||
Description string `json:"description" description:"描述"`
|
||||
Content string `json:"content" description:"内容"`
|
||||
Image string `json:"image" description:"单图"`
|
||||
Attachfile string `json:"attachfile" description:"附件"`
|
||||
Switch int `json:"switch" description:"显示开关"`
|
||||
Sort int `json:"sort" description:"排序"`
|
||||
Status int `json:"status" description:"状态"`
|
||||
CreatedBy int64 `json:"createdBy" description:"创建者"`
|
||||
UpdatedBy int64 `json:"updatedBy" description:"更新者"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" description:"修改时间"`
|
||||
DeletedAt *gtime.Time `json:"deletedAt" description:"删除时间"`
|
||||
}
|
Reference in New Issue
Block a user