1 Star 0 Fork 0

BOBO/创想空间服务逻辑库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rbac_admin_department_query.go 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
zhouyp 提交于 2024-06-21 17:51 . 初始化代码
package rbac
import (
"context"
"gitee.com/bobo-rs/creative-services/framework/dao"
"gitee.com/bobo-rs/creative-services/framework/model"
"gitee.com/bobo-rs/creative-services/library/exception"
"github.com/gogf/gf/v2/frame/g"
)
// CheckAdminDepartByAid 通过管理员ID检测管理员是否关联部门
func (r *sRbac) CheckAdminDepartByAid(ctx context.Context, adminId uint) bool {
if adminId == 0 {
return false
}
// 是否存在
b, _ := r.AdminDepartmentModel().Exists(ctx, g.Map{
dao.AdminDepartment.Columns().AdminId: adminId,
})
return b
}
// CheckAdminDepartByDepartId 通过部门ID检测部门是否关联管理员
func (r *sRbac) CheckAdminDepartByDepartId(ctx context.Context, departId uint) bool {
if departId == 0 {
return false
}
// 是否存在
b, _ := r.AdminDepartmentModel().Exists(ctx, g.Map{
dao.AdminDepartment.Columns().DepartId: departId,
})
return b
}
// ProcessAdminIdAndDepartIdList 获取管理员ID关联部门ID列表
func (r *sRbac) ProcessAdminIdAndDepartIdList(ctx context.Context, where interface{}) (rows []model.AdminIdAndDepartIdItem, err error) {
rows = []model.AdminIdAndDepartIdItem{}
err = r.AdminDepartmentModel().Scan(ctx, where, &rows)
if err != nil {
return nil, exception.New(`数据不存在`)
}
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bobo-rs/creative-services.git
git@gitee.com:bobo-rs/creative-services.git
bobo-rs
creative-services
创想空间服务逻辑库
v1.0.7

搜索帮助