代码拉取完成,页面将自动刷新
package rbac
import (
"gitee.com/bobo-rs/creative-framework/pkg/utils"
"gitee.com/bobo-rs/innovideo-services/enums"
"gitee.com/bobo-rs/innovideo-services/framework/dao"
"gitee.com/bobo-rs/innovideo-services/framework/model"
)
// RolesWhere 角色条件
func (r *sRbac) RolesWhere(in model.RolesListInput) map[string]interface{} {
var (
where = make(map[string]interface{})
columns = dao.Roles.Columns()
)
// 角色名
if len(in.Name) > 0 {
where[columns.Name] = in.Name
}
// 状态
if in.Status.Fmt() != "" {
where[columns.RoleStatus] = in.Status
}
return where
}
// UserAdminWhere 用户管理员搜索条件
func (r *sRbac) UserAdminWhere(in model.UserAdminWhereItem) map[string]interface{} {
var (
where = make(map[string]interface{})
columns = dao.UserAdmin.Columns()
)
// 管理员名
if len(in.ManageName) > 0 {
where[columns.ManageName+` like ?`] = `%` + in.ManageName + `%`
}
// 管理员编号
if len(in.ManageNo) > 0 {
where[columns.ManageNo] = utils.SplitNonCharWords(in.ManageNo)
}
// 状态
if enums.AdminManageStatus(in.ManageStatus).Fmt() != "" {
where[columns.ManageStatus] = in.ManageStatus
}
// 是否超管
if enums.AdminIsSuperManage(in.IsSuperManage).Fmt() != "" {
where[columns.IsSuperManage] = in.IsSuperManage
}
return where
}
// FormatUserAdmin 格式化用户管理员
func (r *sRbac) FormatUserAdmin(detail *model.UserAdminGetDetailItem) {
detail.FmtManageStatus = enums.AdminManageStatus(detail.ManageStatus).Fmt()
detail.FmtIsSuperManage = enums.AdminIsSuperManage(detail.IsSuperManage).Fmt()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。