回调
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user