quanwei
2025-12-05 feda780069d64479c0c20493603717e100655da9
admin/app/common/model/supplier/Supplier.php
@@ -252,5 +252,15 @@
    {
        $this->save(['money' => $this['money'] - $money,'freeze_money'=>$this['freeze_money']+$money]);
    }
    /**
     * 直推供应商多少人
     */
    public function refereeSupplierCount ($referee_id)
    {
        $count = $this->where('referee_id', '=', $referee_id)
            ->where('is_delete', '=', 0)
            ->count();
        return $count;
    }
}