26 lines
433 B

<?php
/**
* Created by PhpStorm.
* User: travis
* Date: 2019/12/12
* Time: 15:59
*/
namespace api\controllers;
class WxPaymentController extends CommonController
{
public $modelClass = 'backend\modules\shop\models\ars\Order';
public $className = 'api\logic\WXPaymentLogic';
public function actionWeb()
{
return $this->object->wxPayment();
}
public function actionMiniProgram()
{
}
}