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

1 month ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // Ebooks is the golang structure for table ebooks.
  6. type Ebooks struct {
  7. Id uint64 `json:"id" orm:"id" description:"主键"` // 主键
  8. Cover string `json:"cover" orm:"cover" description:"封面图URL"` // 封面图URL
  9. Title string `json:"title" orm:"title" description:"书名(唯一约束)"` // 书名(唯一约束)
  10. Description string `json:"description" orm:"description" description:"简介"` // 简介
  11. ViewCount uint `json:"viewCount" orm:"view_count" description:"观看人数"` // 观看人数
  12. }