You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
808 B
18 lines
808 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// CoverImg is the golang structure for table cover_img.
|
|
type CoverImg struct {
|
|
Id int `json:"id" orm:"id" description:"主键id"`
|
|
Name string `json:"name" orm:"name" description:"图片名称"`
|
|
Url string `json:"url" orm:"url" description:"图片链接"`
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"添加时间"`
|
|
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"修改时间"`
|
|
}
|