classify.go 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package english_classify
  2. import (
  3. "hongze/hongze_yb_en_api/global"
  4. "hongze/hongze_yb_en_api/models/base"
  5. )
  6. type Classify struct {
  7. Id int `gorm:"primaryKey;column:id" json:"id"`
  8. ClassifyName string `gorm:"column:classify_name" json:"classify_name"` //分类名称
  9. Sort int8 `gorm:"column:sort" json:"sort"` //排序
  10. ParentId int `gorm:"column:parent_id" json:"parent_id"` //父级分类id
  11. ClassifyLabel string `gorm:"column:classify_label" json:"classify_label"`
  12. ShowType uint8 `gorm:"column:show_type" json:"show_type"` //展示类型:1-列表 2-专栏
  13. ClassifyType uint8 `gorm:"column:classify_type" json:"classify_type"` //分类类型:0英文报告,1英文线上路演
  14. IsShow int8 `gorm:"column:is_show" json:"is_show"` //是否展示报告:1,展示该分类下的报告,0隐藏分类下的报告
  15. base.TimeBase
  16. }
  17. // TableName get sql table name.获取数据库表名
  18. func (c *Classify) TableName() string {
  19. return "english_classify"
  20. }
  21. type ClassifyItem struct {
  22. Id int `json:"id"`
  23. ClassifyName string `json:"classify_name"` //分类名称
  24. Sort int8 `json:"sort"` //排序
  25. ParentId int `json:"parent_id"` //父级分类id
  26. ClassifyLabel string `json:"classify_label"`
  27. ShowType uint8 `json:"show_type"` //展示类型:1-列表 2-专栏
  28. ClassifyType uint8 `json:"classify_type"` //分类类型:0英文报告,1英文线上路演
  29. IsShow int8 `json:"is_show"` //是否展示报告:1,展示该分类下的报告,0隐藏分类下的报告
  30. CreateTime string `json:"create_time"` //创建时间
  31. ModifyTime string `json:"modify_time"` //最后更新时间
  32. }
  33. type ClassifyListItem struct {
  34. Id int `json:"id"`
  35. ClassifyName string `json:"classify_name"` //分类名称
  36. Sort int8 `json:"sort"` //排序
  37. ParentId int `json:"parent_id"` //父级分类id
  38. ClassifyLabel string `json:"classify_label"`
  39. ShowType uint8 `json:"show_type"` //展示类型:1-列表 2-专栏
  40. IsShow int8 `json:"is_show"` //是否展示报告:1,展示该分类下的报告,0隐藏分类下的报告
  41. ClassifyType uint8 `json:"classify_type"` //分类类型:0英文报告,1英文线上路演
  42. CreateTime string `json:"create_time"` //创建时间
  43. ModifyTime string `json:"modify_time"` //最后更新时间
  44. Child []*ClassifyItem `json:"child"`
  45. }
  46. type ClassifyReq struct {
  47. ClassifyType int `json:"classify_type" form:"classify_type,default=0"`
  48. }
  49. // GetParent 获取一级分类列表
  50. func (c *Classify) GetParent(classifyType int) (list []*Classify, err error) {
  51. err = global.DEFAULT_MYSQL.Model(c).Where("parent_id=0 and classify_type=?", classifyType).Order("sort ASC,create_time ASC").Scan(&list).Error
  52. return
  53. }
  54. // GetChild 获取二级分类列表
  55. func (c *Classify) GetChild(classifyType int) (list []*Classify, err error) {
  56. err = global.DEFAULT_MYSQL.Model(c).Where("parent_id>0 and classify_type=?", classifyType).Order("sort ASC,create_time ASC").Scan(&list).Error
  57. return
  58. }