修退税接口

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