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

  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // CoverImg is the golang structure for table cover_img.
  9. type CoverImg struct {
  10. Id int `json:"id" orm:"id" description:"主键id"`
  11. Name string `json:"name" orm:"name" description:"图片名称"`
  12. Url string `json:"url" orm:"url" description:"图片链接"`
  13. CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"添加时间"`
  14. UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"修改时间"`
  15. }