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