|
@@ -5,8 +5,6 @@ package server
|
|
|
|
|
|
import (
|
|
import (
|
|
"context"
|
|
"context"
|
|
- "github.com/zeromicro/go-zero/core/logx"
|
|
|
|
-
|
|
|
|
"jyBXCore/rpc/internal/logic"
|
|
"jyBXCore/rpc/internal/logic"
|
|
"jyBXCore/rpc/internal/svc"
|
|
"jyBXCore/rpc/internal/svc"
|
|
"jyBXCore/rpc/type/bxcore"
|
|
"jyBXCore/rpc/type/bxcore"
|
|
@@ -26,7 +24,6 @@ func NewBxCoreServer(svcCtx *svc.ServiceContext) *BxCoreServer {
|
|
// 标讯搜索结果列表数据
|
|
// 标讯搜索结果列表数据
|
|
func (s *BxCoreServer) GetSearchList(ctx context.Context, in *bxcore.SearchReq) (*bxcore.SearchResp, error) {
|
|
func (s *BxCoreServer) GetSearchList(ctx context.Context, in *bxcore.SearchReq) (*bxcore.SearchResp, error) {
|
|
l := logic.NewGetSearchListLogic(ctx, s.svcCtx)
|
|
l := logic.NewGetSearchListLogic(ctx, s.svcCtx)
|
|
- logx.Info("----------------------------------:", in.KeyWords)
|
|
|
|
return l.GetSearchList(in)
|
|
return l.GetSearchList(in)
|
|
}
|
|
}
|
|
|
|
|