Commit 15eb2c60 authored by  林继鑫's avatar 林继鑫

Merge branch 'develop' of http://git.huaperfect.com/without_auth/meibuyu-rpc into develop

parents 0127e966 ebb5208e
<?php
declare(strict_types=1);
namespace Meibuyu\Rpc\Service\Interfaces\DatacenterNew;
/**
* @author chentianyu
*/
interface StockPlanServiceInterface
{
/**
* 获取历史销量分页
* @param array $params ['year'=>2013,'sku'=>'aabbcc']
* @return mixed
* @author chentianyu
*/
public function getProductChildrenHistorySalePaginate(array $params);
/**
* 导出历史销量
* @param array $params ['year'=>2013,'sku'=>'aabbcc']
* @return mixed
* @author chentianyu
*/
public function exportProductChildrenHistorySale(array $params);
/**
* 获取预测销量分页
* @param array $params ['year'=>2013,'sku'=>'aabbcc']
* @return mixed
* @author chentianyu
*/
public function getProductEstimateSalePaginate(array $params);
/**
* 导出预测销量
* @param array $params ['year'=>2013,'sku'=>'aabbcc']
* @return mixed
* @author chentianyu
*/
public function exportProductEstimateSale(array $params);
}
\ No newline at end of file
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