package logic import ( "context" "jyBXAdditional/rpc/bxcollection/bxcol" "jyBXAdditional/rpc/bxcollection/internal/svc" "github.com/zeromicro/go-zero/core/logx" ) type IsCollActionLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewIsCollActionLogic(ctx context.Context, svcCtx *svc.ServiceContext) *IsCollActionLogic { return &IsCollActionLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 招标信息是否被收藏 func (l *IsCollActionLogic) IsCollAction(in *bxcol.IsCollActionReq) (*bxcol.IsCollActionRes, error) { // todo: add your logic here and delete this line return &bxcol.IsCollActionRes{}, nil }