Index.php 395 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace app\index\controller;
  8. use app\common\library\UUIDs;
  9. use think\Controller;
  10. use think\Db;
  11. class Index extends Controller
  12. {
  13. public function index(){
  14. echo "index";
  15. }
  16. }