OfficialAccountBillsService.php 660 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: tandunzhao
  5. * Date: 2017/12/4
  6. * Time: 上午10:14
  7. */
  8. namespace App\Modules\Finance\Services;
  9. use App\Modules\Finance\Models\OfficialAccountBills;
  10. class OfficialAccountBillsService
  11. {
  12. /**
  13. * 获取服务号的充值信息
  14. * @param $distribution_channel_id
  15. * @param $start_time
  16. * @param $end_time
  17. * @param $isAll
  18. * @return mixed
  19. */
  20. public static function getBillsByOfficialAcount($distribution_channel_id, $start_time, $end_time, $isAll)
  21. {
  22. return OfficialAccountBills::getOfficialAccountBills($distribution_channel_id, $start_time, $end_time, $isAll);
  23. }
  24. }