Commit 4a454635 authored by fuyunnan's avatar fuyunnan

Merge branch 'master' of 39.100.151.123:hwq/micro

parents e0a1c1a3 fa2929c7
<?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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment