TestPay.php 458 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\api\controller\v2;
  3. use app\api\controller\Api;
  4. use app\api\controller\v1\PayNotifyCoin;
  5. use app\common\model\Members;
  6. use app\common\model\MembersTwo;
  7. use app\common\model\Game;
  8. use think\Cache;
  9. use think\Model;
  10. class TestPay extends PayNotifyCoin
  11. {
  12. public function test(){
  13. $total_fee = input('total_fee');
  14. $out_trade_no = input('out_trade_no');
  15. $this->updateOrderCoin($out_trade_no,$total_fee);
  16. }
  17. }