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.
14 lines
857 B
14 lines
857 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// Ebooks is the golang structure for table ebooks.
|
|
type Ebooks struct {
|
|
Id uint64 `json:"id" orm:"id" description:"主键"` // 主键
|
|
Cover string `json:"cover" orm:"cover" description:"封面图URL"` // 封面图URL
|
|
Title string `json:"title" orm:"title" description:"书名(唯一约束)"` // 书名(唯一约束)
|
|
Description string `json:"description" orm:"description" description:"简介"` // 简介
|
|
ViewCount uint `json:"viewCount" orm:"view_count" description:"观看人数"` // 观看人数
|
|
}
|