You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/api/service/statistics/OrderData.php

28 lines
638 B

<?php
namespace app\api\service\statistics;
use app\common\service\BaseService;
class OrderData extends BaseService
{
public function getOrderData(): array
{
return [
//订单金额
"orderMoney" => 0,
//订单数
"orderCount" => 0,
//支持人数
'orderPayUser' => 0,
//订单成本金额
'orderCostMoney' => 0,
//预估利益
'orderInterest' => 0,
//付费会员数
'payMemberCount' => 0,
//付费分销商数
'payDealerCount' => 0
];
}
}