12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package english_classify
- import (
- "hongze/hongze_yb_en_api/global"
- "hongze/hongze_yb_en_api/models/base"
- )
- type Classify struct {
- Id int `gorm:"primaryKey;column:id" json:"id"`
- ClassifyName string `gorm:"column:classify_name" json:"classify_name"`
- Sort int8 `gorm:"column:sort" json:"sort"`
- ParentId int `gorm:"column:parent_id" json:"parent_id"`
- ClassifyLabel string `gorm:"column:classify_label" json:"classify_label"`
- ShowType uint8 `gorm:"column:show_type" json:"show_type"`
- ClassifyType uint8 `gorm:"column:classify_type" json:"classify_type"`
- IsShow int8 `gorm:"column:is_show" json:"is_show"`
- base.TimeBase
- }
- func (c *Classify) TableName() string {
- return "english_classify"
- }
- type ClassifyItem struct {
- Id int `json:"id"`
- ClassifyName string `json:"classify_name"`
- Sort int8 `json:"sort"`
- ParentId int `json:"parent_id"`
- ClassifyLabel string `json:"classify_label"`
- ShowType uint8 `json:"show_type"`
- ClassifyType uint8 `json:"classify_type"`
- IsShow int8 `json:"is_show"`
- CreateTime string `json:"create_time"`
- ModifyTime string `json:"modify_time"`
- }
- type ClassifyListItem struct {
- Id int `json:"id"`
- ClassifyName string `json:"classify_name"`
- Sort int8 `json:"sort"`
- ParentId int `json:"parent_id"`
- ClassifyLabel string `json:"classify_label"`
- ShowType uint8 `json:"show_type"`
- IsShow int8 `json:"is_show"`
- ClassifyType uint8 `json:"classify_type"`
- CreateTime string `json:"create_time"`
- ModifyTime string `json:"modify_time"`
- Child []*ClassifyItem `json:"child"`
- }
- type ClassifyReq struct {
- ClassifyType int `json:"classify_type" form:"classify_type,default=0"`
- }
- func (c *Classify) GetParent(classifyType int) (list []*Classify, err error) {
- err = global.DEFAULT_MYSQL.Model(c).Where("parent_id=0 and classify_type=?", classifyType).Order("sort ASC,create_time ASC").Scan(&list).Error
- return
- }
- func (c *Classify) GetChild(classifyType int) (list []*Classify, err error) {
- err = global.DEFAULT_MYSQL.Model(c).Where("parent_id>0 and classify_type=?", classifyType).Order("sort ASC,create_time ASC").Scan(&list).Error
- return
- }
|