123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package logic
- import (
- "app.yhyue.com/moapp/jybase/common"
- "context"
- "jyBXCore/rpc/type/bxcore"
- "net/http"
- "jyBXCore/api/internal/svc"
- "jyBXCore/api/internal/types"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type ParticipateActionLogic struct {
- logx.Logger
- ctx context.Context
- svcCtx *svc.ServiceContext
- r *http.Request
- }
- func NewParticipateActionLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *http.Request) *ParticipateActionLogic {
- return &ParticipateActionLogic{
- Logger: logx.WithContext(ctx),
- ctx: ctx,
- svcCtx: svcCtx,
- r: r,
- }
- }
- func (l *ParticipateActionLogic) ParticipateAction(req *types.ParticipateActionReq) (resp *types.CommonResp, err error) {
- defer common.Catch()
- res, err := l.svcCtx.BxCore.ParticipateAction(l.ctx, &bxcore.ParticipateActionReq{
- EntId: req.EntId,
- EntUserId: req.EntUserId,
- PositionId: req.PositionId,
- PositionType: req.PositionType,
- AppId: req.AppId,
- MgoUserId: req.MgoUserId,
- AccountId: req.AccountId,
- UserId: req.UserId,
- NewUserId: req.NewUserId,
- ProjectIds: req.ProjectIds,
- BidIds: req.BidIds,
- ToEntUserId: req.ToEntUserId,
- IsRetain: req.IsRetain,
- ActionType: req.ActionType,
- EntAccountId: req.EntAccountId,
- Phone: req.Phone,
- })
- if err != nil {
- return &types.CommonResp{
- Err_code: -1,
- Err_msg: "操作失败",
- Data: false,
- }, nil
- }
- return &types.CommonResp{
- Err_code: res.ErrCode,
- Err_msg: res.ErrMsg,
- Data: res.Data,
- }, nil
- }
|