Commit 416465ba authored by fuyunnan's avatar fuyunnan

提交

parents 0253a539 cb41d51d
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
namespace Meibuyu\Micro\Service\Interfaces; namespace Meibuyu\Micro\Service\Interfaces;
use phpDocumentor\Reflection\Types\Integer;
interface DispatchPlanServiceInterface interface DispatchPlanServiceInterface
{ {
...@@ -15,22 +17,21 @@ interface DispatchPlanServiceInterface ...@@ -15,22 +17,21 @@ interface DispatchPlanServiceInterface
* description:获取退税任务列表 * description:获取退税任务列表
* author: fuyunnan * author: fuyunnan
* @param array $conditions 筛选条件 * @param array $conditions 筛选条件
* @param int $pageSize 默认10 * @param Integer $pageSize 默认10
* Date: 2020/6/13 * Date: 2020/6/13
* @return array * @return array
*/ */
public function listRefundTasks(array $conditions = [], int $pageSize = 10) : array; public function listRefundTasks(array $conditions, Integer $pageSize) : array;
/** /**
* description:新建退税单 获取底部产品列表 * description:新建退税单 获取底部产品列表
* author: fuyunnan * author: fuyunnan
* @param array $conditions 请求参数 * @param array $conditions 请求参数
* @param integer $pageSize 请求参数
* Date: 2020/6/13 * Date: 2020/6/13
* @return array * @return array
*/ */
public function listRefundProducts(array $conditions = [], int $pageSize = 10 ) :array; public function listRefundProducts(array $conditions = [], Integer $pageSize = 10 ) :array;
/** /**
...@@ -42,4 +43,5 @@ interface DispatchPlanServiceInterface ...@@ -42,4 +43,5 @@ interface DispatchPlanServiceInterface
*/ */
public function delete($id) :bool; public function delete($id) :bool;
} }
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