doc : add notes

This commit is contained in:
zhangwenjian
2020-07-27 22:45:47 +08:00
parent 1a50570f6c
commit f693ff60b2
3 changed files with 36 additions and 2 deletions
+8
View File
@@ -2,8 +2,10 @@ package models
import (
"errors"
"fmt"
"github.com/jinzhu/gorm"
"go-admin/tools"
"go-admin/tools/config"
)
type DataPermission struct {
@@ -14,6 +16,12 @@ type DataPermission struct {
}
func (e *DataPermission) GetDataScope(tbname string, table *gorm.DB) (*gorm.DB, error) {
if !config.ApplicationConfig.EnableDP {
usageStr := `数据权限已经为您` + tools.Green(`关闭`) + `,如需开启请参考配置文件字段说明`
fmt.Printf("%s\n", usageStr)
return table, nil
}
SysUser := new(SysUser)
SysRole := new(SysRole)
SysUser.UserId = e.UserId