2016-11-07 00:45:29 +08:00

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();
}
}