This commit is contained in:
2026-09-04 17:51:30 +08:00
parent 04402a8bdf
commit e615be6ad7
18 changed files with 449 additions and 124 deletions
@@ -70,6 +70,16 @@ func (s *ExpressServer) ExpressDelivering(ctx context.Context, in *express.Deliv
return l.ExpressDelivering(in)
}
func (s *ExpressServer) ExpressSfBack(ctx context.Context, in *express.EmtpyRequest) (*express.SfResponse, error) {
l := logic.NewExpressSfBackLogic(ctx, s.svcCtx)
return l.ExpressSfBack(in)
}
func (s *ExpressServer) ExpressJdBack(ctx context.Context, in *express.EmtpyRequest) (*express.Response, error) {
l := logic.NewExpressJdBackLogic(ctx, s.svcCtx)
return l.ExpressJdBack(in)
}
// 添加生成订单的发货信息
func (s *ExpressServer) DeliveryOrderCreate(ctx context.Context, in *express.DeliveryOrderCreateRequest) (*express.IdResponse, error) {
l := logic.NewDeliveryOrderCreateLogic(ctx, s.svcCtx)