22 lines
279 B
PHP
22 lines
279 B
PHP
<?php
|
|
|
|
namespace app\api\model\app\agent;
|
|
|
|
use think\Model;
|
|
use think\Db;
|
|
|
|
/**
|
|
* 分佣
|
|
*/
|
|
class Commission extends Model
|
|
{
|
|
|
|
public function handle($order)
|
|
{
|
|
//计算佣金
|
|
|
|
|
|
|
|
$orderItemList = (new Item())->getItemList($order->order_no);
|
|
}
|
|
} |