This commit is contained in:
wangjinlei
2020-11-12 15:51:19 +08:00
parent 69bdcdc84a
commit 251d1b19c8
480 changed files with 7298 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace app\api\controller;
use think\Controller;
use think\Db;
class Index extends Controller{
public function index() {
}
public function test() {
echo md5('mtrsuper999');
}
}