Commit 22eb2062 authored by 姜克保's avatar 姜克保
Browse files

Merge branch 'feature-add-sync-magento-order' into develop

parents 61e6389b 3367380e
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
<?php
/**
 * Created by PhpStorm.
 * User: qiudongfang
 * Date: ${DATA}
 * Time: 下午2:57
 */

namespace Meibuyu\Rpc\Service\Interfaces\SyncDataService;

interface SyncMagentoServiceInterface
{
    /**
     * @param $platformOrderId 平台单号id
     * @param int $pageSize 每页最多展示50条
     * @return array
     */
    public function syncOrders($platformOrderId, $pageSize = 10):array;
}