package logic import ( "app.yhyue.com/moapp/jybase/common" "context" "jyBXBase/rpc/type/bxbase" "net/http" "jyBXBase/api/internal/svc" "jyBXBase/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type CheckSearchScreenLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext r *http.Request } func NewCheckSearchScreenLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *http.Request) *CheckSearchScreenLogic { return &CheckSearchScreenLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, r: r, } } func (l *CheckSearchScreenLogic) CheckSearchScreen(req *types.AddSearchScreen) (resp *types.CommonRes, err error) { res, err0 := l.svcCtx.Bxbase.CheckSearch(l.ctx, &bxbase.AddSearchReq{ UserId: req.UserId, Type: req.Type, Keywords: req.Keywords, PublishTime: req.Publishtime, Area: req.Area, City: req.City, Subtype: req.Subtype, MinPrice: req.Minprice, MaxPrice: req.Maxprice, Industry: req.Industry, SelectType: req.SelectType, BuyerClass: req.Buyerclass, HasBuyerTel: req.Hasbuyertel, HasWinnerTel: req.Haswinnertel, FileExists: req.FileExists, NotKey: req.Notkey, AppId: req.AppId, SearchGroup: int64(req.SearchGroup), SearchMode: int64(req.SearchMode), WordsMode: int64(req.WordsMode), AdditionalWords: req.AdditionalWords, RegionMap: req.RegionMap, }) if err0 != nil { return &types.CommonRes{ Err_code: -1, Err_msg: "错误", Data: nil, }, nil } return &types.CommonRes{ Err_code: common.IntAll(res.ErrCode), Err_msg: res.ErrMsg, Data: res.Data, }, nil }