1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Created by PhpStorm.
- * User: tandunzhao
- * Date: 2017/12/4
- * Time: 上午10:14
- */
- namespace App\Modules\Finance\Services;
- use App\Modules\Finance\Models\OfficialAccountBills;
- class OfficialAccountBillsService
- {
- /**
- * 获取服务号的充值信息
- * @param $distribution_channel_id
- * @param $start_time
- * @param $end_time
- * @param $isAll
- * @return mixed
- */
- public static function getBillsByOfficialAcount($distribution_channel_id, $start_time, $end_time, $isAll)
- {
- return OfficialAccountBills::getOfficialAccountBills($distribution_channel_id, $start_time, $end_time, $isAll);
- }
- }
|