Commit cb41d51d authored by fuyunnan's avatar fuyunnan

cc

parent a68ca53e
...@@ -8,6 +8,9 @@ ...@@ -8,6 +8,9 @@
namespace Meibuyu\Micro\Service\Interfaces; namespace Meibuyu\Micro\Service\Interfaces;
use phpDocumentor\Reflection\Types\Boolean;
use phpDocumentor\Reflection\Types\Integer;
interface DispatchPlanServiceInterface interface DispatchPlanServiceInterface
{ {
...@@ -15,11 +18,11 @@ interface DispatchPlanServiceInterface ...@@ -15,11 +18,11 @@ 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) : array; public function listRefundTasks(array $conditions, Integer $pageSize) : array;
...@@ -38,8 +41,8 @@ interface DispatchPlanServiceInterface ...@@ -38,8 +41,8 @@ interface DispatchPlanServiceInterface
* author: fuyunnan * author: fuyunnan
* @param int $id 计划任务id * @param int $id 计划任务id
* Date: 2020/6/13 * Date: 2020/6/13
* @return int * @return bool
*/ */
public function delete($id) :int; public function delete($id) :Boolean;
} }
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