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.

24 lines
1.0 KiB

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // Category is the golang structure for table category.
  6. type Category struct {
  7. Id int `json:"id" ` //
  8. ParentId int `json:"parent_id" ` // 父节点
  9. Name string `json:"name" ` // 分类名字
  10. Union string `json:"union" ` // 关联
  11. Sort int `json:"sort" ` // 排序
  12. Status int `json:"status" ` // 状态
  13. SeoTitle string `json:"seo_title" ` //
  14. SeoKey string `json:"seo_key" ` //
  15. SeoDes string `json:"seo_des" ` //
  16. TplIndex string `json:"tpl_index" ` // Index
  17. TplList string `json:"tpl_list" ` // List
  18. TplDetail string `json:"tpl_detail" ` // Detail
  19. TplDown string `json:"tpl_down" ` // Down
  20. TplPlay string `json:"tpl_play" ` // player
  21. Extend string `json:"extend" ` // 扩展属性 集合
  22. }