FinancialDao.php 319 B

1234567891011121314151617
  1. <?php
  2. namespace App\Dao\Settlement;
  3. use App\Models\Settlement\FinancialStats;
  4. class FinancialDao
  5. {
  6. /**
  7. * @param $channelId
  8. * @return mixed
  9. */
  10. public function getChannelFinancialStat($channelId)
  11. {
  12. return FinancialStats::where('distribution_channel_id', $channelId)->first();
  13. }
  14. }