2 Star 4 Fork 5

联犀/中台模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
accessInfoIndexLogic.go 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 21:56 . feat: 更新mod
package accessmanagelogic
import (
"context"
"gitee.com/unitedrhino/core/service/syssvr/internal/logic"
"gitee.com/unitedrhino/core/service/syssvr/internal/repo/relationDB"
"gitee.com/unitedrhino/core/service/syssvr/internal/svc"
"gitee.com/unitedrhino/core/service/syssvr/pb/sys"
"github.com/zeromicro/go-zero/core/logx"
)
type AccessInfoIndexLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewAccessInfoIndexLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AccessInfoIndexLogic {
return &AccessInfoIndexLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *AccessInfoIndexLogic) AccessInfoIndex(in *sys.AccessInfoIndexReq) (*sys.AccessInfoIndexResp, error) {
f := relationDB.AccessFilter{
Name: in.Name,
Code: in.Code,
Codes: in.Codes,
IsNeedAuth: in.IsNeedAuth,
Group: in.Group,
WithApis: in.WithApis,
}
total, err := relationDB.NewAccessRepo(l.ctx).CountByFilter(l.ctx, f)
if err != nil {
return nil, err
}
pos, err := relationDB.NewAccessRepo(l.ctx).FindByFilter(l.ctx, f, logic.ToPageInfo(in.Page))
if err != nil {
return nil, err
}
var list []*sys.AccessInfo
for _, v := range pos {
list = append(list, ToAccessPb(v))
}
return &sys.AccessInfoIndexResp{List: list, Total: total}, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/core.git
git@gitee.com:unitedrhino/core.git
unitedrhino
core
中台模块
v1.0.0

搜索帮助