Files
novel/internal/model/entity/short_story.go
2024-01-12 18:08:51 +08:00

26 lines
1.4 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// ShortStory is the golang structure for table short_story.
type ShortStory struct {
Id uint `json:"id" description:""`
Title string `json:"title" description:"标题"`
Content string `json:"content" description:"内容"`
RecommendCoverImg string `json:"recommendCoverImg" description:"推荐封面"`
BookCoverImg string `json:"bookCoverImg" description:"书籍封面"`
RecommendTitle string `json:"recommendTitle" description:"推荐标题"`
CatId string `json:"catId" description:"分类,多个用逗号隔开"`
PreReadPercent uint `json:"preReadPercent" description:"试读百分比"`
IsAudit uint `json:"isAudit" description:"是否审核1-已审核2-未审核3-草稿"`
CreatedAt *gtime.Time `json:"createdAt" description:""`
UpdatedAt *gtime.Time `json:"updatedAt" description:""`
DeletedAt *gtime.Time `json:"deletedAt" description:""`
}