package plan import ( "context" "muyu-apiserver/gateway/internal/svc" "muyu-apiserver/gateway/internal/types" "muyu-apiserver/pkg/ctxdata" "muyu-apiserver/rpc/production/productionservice" "github.com/zeromicro/go-zero/core/logx" ) type GetProductionPlanLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewGetProductionPlanLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetProductionPlanLogic { return &GetProductionPlanLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *GetProductionPlanLogic) GetProductionPlan() (*types.ProductionPlanInfo, error) { planId := ctxdata.GetPathId(l.ctx) resp, err := l.svcCtx.ProductionRpc.GetProductionPlan(l.ctx, &productionservice.GetProductionPlanReq{ PlanId: planId, }) if err != nil { return nil, err } return productionPlanInfoFromPB(resp), nil }