Files
erp-site/application/controllers/service.php
2026-04-19 01:39:41 +08:00

25 lines
447 B
PHP
Executable File

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Service extends CI_Controller {
public function __construct(){
parent::__construct();
$this->common_model->checkpurview();
}
public function index() {
$this->load->view('service');
}
public function recover() {
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */