瀏覽代碼

feat(打卡):完成开发

geek 5 年之前
父節點
當前提交
b128c7a058
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      application/index/controller/Index.php

+ 3 - 1
application/index/controller/Index.php

@@ -1,6 +1,7 @@
 <?php
 <?php
 namespace app\index\controller;
 namespace app\index\controller;
 
 
+use app\index\service\DaKaService;
 use think\Db;
 use think\Db;
 use think\Validate;
 use think\Validate;
 
 
@@ -40,7 +41,8 @@ class Index
 
 
 
 
     public function daka() {
     public function daka() {
-
+        $service = new DaKaService();
+        $service->run();
 
 
     }
     }
 }
 }