menu.go 622 B

1234567891011121314151617181920212223
  1. package models
  2. type Menu struct {
  3. Id int64 `xorm:"id"`
  4. Name string `xorm:"name"`
  5. MenuType string `xorm:"menutype"`
  6. Path string `xorm:"path"`
  7. Icon string `xorm:"icon"`
  8. Redirect string `xorm:"redirect"`
  9. Title string `xorm:"title"`
  10. ParentId int64 `xorm:"parentid"`
  11. Component string `xorm:"component"`
  12. Sort int32 `xorm:"sort"`
  13. Enable int32 `xorm:"enable"`
  14. CreatedOn int64 `xorm:"created_on"`
  15. ModifiedOn int64 `xorm:"modified_on"`
  16. DeletedOn int64 `xorm:"deleted_on"`
  17. Isg int32 `xorm:"isg"`
  18. }
  19. func (m *Menu) TableName() string {
  20. return "menu"
  21. }