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.
 
 
 

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()
{
}
}