Loading src/Service/Interfaces/DispatchPlanServiceInterface.php 0 → 100644 +25 −0 Original line number Diff line number Diff line <?php /** * Created by PhpStorm. * User: 姜克保 * Date: 2020/5/20 * Time: 15:48 */ namespace Meibuyu\Micro\Service\Interfaces; interface DispatchPlanServiceInterface { /** * 根据发货计划id获取发货计划信息 * @param int $id 计划任务id * @return array */ public function getDispatchPlanById(int $id): array; /** *获取发货任务列表 * @return array */ public function listDispatchPlans(array $conditions, bool $isPage = true): array; } Loading
src/Service/Interfaces/DispatchPlanServiceInterface.php 0 → 100644 +25 −0 Original line number Diff line number Diff line <?php /** * Created by PhpStorm. * User: 姜克保 * Date: 2020/5/20 * Time: 15:48 */ namespace Meibuyu\Micro\Service\Interfaces; interface DispatchPlanServiceInterface { /** * 根据发货计划id获取发货计划信息 * @param int $id 计划任务id * @return array */ public function getDispatchPlanById(int $id): array; /** *获取发货任务列表 * @return array */ public function listDispatchPlans(array $conditions, bool $isPage = true): array; }