代码拉取完成,页面将自动刷新
package accessmanagelogic
import (
"context"
"gitee.com/i-Things/core/service/syssvr/internal/logic"
"gitee.com/i-Things/core/service/syssvr/internal/repo/relationDB"
"gitee.com/i-Things/core/service/syssvr/internal/svc"
"gitee.com/i-Things/core/service/syssvr/pb/sys"
"github.com/zeromicro/go-zero/core/logx"
)
type ApiInfoIndexLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewApiInfoIndexLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ApiInfoIndexLogic {
return &ApiInfoIndexLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *ApiInfoIndexLogic) ApiInfoIndex(in *sys.ApiInfoIndexReq) (*sys.ApiInfoIndexResp, error) {
f := relationDB.ApiInfoFilter{
ApiIDs: in.ApiIDs,
Route: in.Route,
Method: in.Method,
Name: in.Name,
AccessCode: in.AccessCode,
AuthType: in.AuthType,
}
pos, err := relationDB.NewApiInfoRepo(l.ctx).FindByFilter(l.ctx, f, logic.ToPageInfo(in.Page))
if err != nil {
return nil, err
}
total, err := relationDB.NewApiInfoRepo(l.ctx).CountByFilter(l.ctx, f)
if err != nil {
return nil, err
}
var ais []*sys.ApiInfo
for _, v := range pos {
ais = append(ais, ToApiInfoPb(v))
}
return &sys.ApiInfoIndexResp{
List: ais,
Total: total,
}, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。