SyncMagentoServiceInterface.php 411 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php
/**
 * Created by PhpStorm.
 * User: qiudongfang
 * Date: ${DATA}
 * Time: 下午2:57
 */

namespace Meibuyu\Rpc\Service\Interfaces\SyncDataService;

interface SyncMagentoServiceInterface
{
    /**
姜克保's avatar
姜克保 committed
14
     * @param int $platformOrderId 平台单号id
15
     * @param int $pageSize 每页最多展示50条
姜克保's avatar
姜克保 committed
16
     * @return bool
17
     */
姜克保's avatar
姜克保 committed
18
    public function syncOrders(int $platformOrderId, $pageSize = 10):bool;
19
}