VisitController.php 360 B

123456789101112131415161718192021
  1. <?php
  2. namespace backend\controllers;
  3. use Yii;
  4. use yii\web\Controller;
  5. use yii\helpers\Json;
  6. use common\components\util;
  7. use common\components\configDict;
  8. use common\components\stringUtil;
  9. use common\services\xhVisitByDayService;
  10. class VisitController extends BackendController
  11. {
  12. public $withoutLogin = [];
  13. public function actionIndex()
  14. {
  15. }
  16. }