mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-18 17:26:40 +08:00
29 lines
1.4 KiB
Go
29 lines
1.4 KiB
Go
// =================================================================================
|
|
// 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:"删除时间"`
|
|
}
|