OperationServiceInterface.php 634 Bytes
Newer Older
1 2 3 4 5 6 7 8
<?php
/**
 * Created by PhpStorm.
 * User: zhaopeng
 * Date: 2020/9/5
 * Time: 10:09
 */

zhaopeng343's avatar
zhaopeng343 committed
9
namespace Meibuyu\Micro\Service\Interfaces\Operation;
10

zhaopeng343's avatar
zhaopeng343 committed
11
interface OperationServiceInterface
12 13 14 15 16 17 18
{
    /**
     * 获取销售报表其他数据
     * @param array $conditions 必传条件  site_id team_id start_time end_time
     * @return mixed
     */
    public function getBusinessSaleOtherDatum(array $conditions);
19 20 21 22 23 24 25

    /**
     * 获取销售报表其他数据
     * @param array $conditions 必传条件  site_id team_id start_time end_time
     * @return mixed
     */
    public function getBusinessSaleOtherDatumRmb(array $conditions);
26
}