2021-08-20 14:59:13 +08:00
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
2021-08-22 00:13:00 +08:00
|
|
|
"goweb/global"
|
|
|
|
"goweb/model"
|
2021-08-20 14:59:13 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type menuRepository struct{}
|
|
|
|
|
|
|
|
type MenuRepository interface {
|
|
|
|
Migrate() error
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMenuRepository 新建实例
|
|
|
|
func NewMenuRepository() MenuRepository {
|
|
|
|
return menuRepository{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Migrate 初始化数据库结构
|
|
|
|
func (r menuRepository) Migrate() error {
|
|
|
|
return global.MySQLConn.AutoMigrate(&model.Menu{})
|
|
|
|
}
|