12345678910111213141516171819202122 |
- <?php
- /**
- * Created by PhpStorm.
- * User: tandunzhao
- * Date: 2017/12/4
- * Time: 上午10:14
- */
- namespace App\Modules\Finance\Services;
- use App\Modules\Channel\Services\ChannelService;
- use App\Modules\Finance\Models\Bill;
- use App\Modules\Finance\Models\BillPayMerchant;
- class BillPayMerchantService
- {
- static function addPayMerchantsBills(Array $recharge_infos){
- return BillPayMerchant::addPayMerchantsBills($recharge_infos);
- }
- }
|