12345678910111213141516171819202122232425262728293031323334 |
- <?php
-
-
- namespace app\plugins\controller;
-
- use think\Db;
-
- class MakemHtml extends Base
- {
-
-
- public function __construct(){
- parent::__construct();
- }
-
-
-
- public function index()
- {
- return $this->fetch();
- }
- }
|