Commit 3ade7086 authored by jiangkebao's avatar jiangkebao

新增发货任务rpc

parent 9caba02c
<?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