无法加载模块模型文件


Not able to load the module model file

我试图弄清楚登录控制器为什么不加载名为user_model的用户模块模型。我还包括了文件结构。我想指出的是,我在这里的应用程序中使用了Jamie Rumbewer的MY_Model。https://github.com/jamierumbelow/codeigniter-base-model

<?php 
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Login extends Backend_Controller 
{
    public function __construct() 
    {
        parent::__construct();
        $this->load->model('user/user_model', 'user');
    }
}
<?php
class User_model extends MY_Model 
{    
    public function __construct()
    {
        parent::__construct();
    }
}
-application
    -modules
        -user
            -controllers
                login.php
            -models
                user_model.php

我能够通过在我错过的文件名上添加扩展名来解决这个问题。