Maintain.php 530 字节
<?php

namespace app\equipment\controller;

use app\common\controller\Frontend;

class Maintain extends Frontend
{

    protected $noNeedLogin = [];
    protected $noNeedRight = '*';
    protected $layout = '';

    public function list()
    {
        return $this->view->fetch();
    }
    public function order()
    {
        
        return $this->view->fetch();
    }
    public function record()
    {
        return $this->view->fetch(); 
    }
    public function add()
    {
        return $this->view->fetch();
    }
}