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.

35 lines
1.1 KiB

package system
import (
"github.com/flipped-aurora/gin-vue-admin/server/global"
"github.com/flipped-aurora/gin-vue-admin/server/model/system"
"github.com/pkg/errors"
"gorm.io/gorm"
)
var Authority = new(authority)
type authority struct{}
func (a *authority) TableName() string {
return "sys_authorities"
}
func (a *authority) Initialize() error {
entities := []system.SysAuthority{
{AuthorityId: "888", AuthorityName: "普通用户", ParentId: "0", DefaultRouter: "dashboard"},
{AuthorityId: "9528", AuthorityName: "测试角色", ParentId: "0", DefaultRouter: "dashboard"},
{AuthorityId: "8881", AuthorityName: "普通用户子角色", ParentId: "888", DefaultRouter: "dashboard"},
}
if err := global.GVA_DB.Create(&entities).Error; err != nil {
return errors.Wrapf(err, "%s表数据初始化失败!", a.TableName())
}
return nil
}
func (a *authority) CheckDataExist() bool {
if errors.Is(global.GVA_DB.Where("authority_id = ?", "8881").First(&system.SysAuthority{}).Error, gorm.ErrRecordNotFound) { // 判断是否存在数据
return false
}
return true
}