mirror of
https://github.com/PengZhangs2017582/novel.git
synced 2025-06-16 15:31:22 +08:00
28 lines
1.0 KiB
Go
28 lines
1.0 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package do
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/frame/g"
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// ShortStory is the golang structure of table nv_short_story for DAO operations like Where/Data.
|
||
type ShortStory struct {
|
||
g.Meta `orm:"table:nv_short_story, do:true"`
|
||
Id interface{} //
|
||
Title interface{} // 标题
|
||
Content interface{} // 内容
|
||
RecommendCoverImg interface{} // 推荐封面
|
||
BookCoverImg interface{} // 书籍封面
|
||
RecommendTitle interface{} // 推荐标题
|
||
CatId interface{} // 分类,多个用逗号隔开
|
||
PreReadPercent interface{} // 试读百分比
|
||
IsAudit interface{} // 是否审核:1-已审核,2-未审核,3-草稿
|
||
CreatedAt *gtime.Time //
|
||
UpdatedAt *gtime.Time //
|
||
DeletedAt *gtime.Time //
|
||
}
|