JiamengController.php 389 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\index\controller;
  3. use cmf\controller\HomeBaseController;
  4. use think\Db;
  5. class JiamengController extends HomeBaseController
  6. {
  7. public function index()
  8. {
  9. return $this->fetch();
  10. }
  11. public function list(){
  12. return $this->fetch();
  13. }
  14. public function show(){
  15. return $this->fetch();
  16. }
  17. }
  18. ?>