You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
433 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: travis
  5. * Date: 2019/12/12
  6. * Time: 15:59
  7. */
  8. namespace api\controllers;
  9. class WxPaymentController extends CommonController
  10. {
  11. public $modelClass = 'backend\modules\shop\models\ars\Order';
  12. public $className = 'api\logic\WXPaymentLogic';
  13. public function actionWeb()
  14. {
  15. return $this->object->wxPayment();
  16. }
  17. public function actionMiniProgram()
  18. {
  19. }
  20. }