12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\api\controller;
-
- use app\admin\logic\WechatMerchantTransferLogic;
- use app\common\basics\Api;
- use app\common\model\WithdrawApply;
-
-
-
- class Test extends Api
- {
- public $like_not_need_login = ['test'];
-
- public function test()
- {
- $withdraw = WithdrawApply::where('id', 111)->findOrEmpty()->toArray();
-
- $result = WechatMerchantTransferLogic::details($withdraw);
- halt($result);
-
- }
- }
|