| 12345678910111213141516171819202122 |
- <?php
- namespace saas\controllers;
- use biz\saas\services\ApplyService;
- use common\components\util;
- use Yii;
- use yii\web\Controller;
- class ApplyController extends BaseController
- {
- //申请列表
- public function actionList()
- {
- $where = [];
- $list = ApplyService::getApplyList($where);
- util::success($list);
- }
- }
|