mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
23 lines
410 B
PHP
23 lines
410 B
PHP
<?php
|
|
/**
|
|
* @since 2016-11-07
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace app\index\controller;
|
|
|
|
|
|
class Help extends Base {
|
|
public function index(){
|
|
return $this->fetch();
|
|
}
|
|
public function pro1(){
|
|
return $this->fetch();
|
|
}
|
|
public function pro2(){
|
|
return $this->fetch();
|
|
}
|
|
public function pro3(){
|
|
return $this->fetch();
|
|
}
|
|
} |