ExternalFactoryServiceInterface.php 334 Bytes
Newer Older
Liu lu's avatar
Liu lu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?php

/**
 * 外工厂rpc服务
 */
namespace Meibuyu\Rpc\Service\Interfaces\OutsideFactory;


interface ExternalFactoryServiceInterface
{


    /**
     * 发货单打印
     * @param $deliveryNo 发货单号
     * @return []
     * @author Liu lu
     * date 2022-11-16
     */
    public function deliveryPrint($deliveryNo);


}