如何在我自己的模块中添加控制器中的模型?(Yii2)

I use Yii2 for create an web application. In this application i need to create my own Module. I create Home module, and put there Module.php class, and 3 folders(MVC). After i configure the application(main.php) and "add" my module.
In controller i load view and test it in browser. Its works fine without using models. When i want to add model in controller, it show some error. Please help me to customize my controller for use model.
I tried this path in controller for model: app\modules\home\model\MyOwnSuperModel but it doesnt work, have any ideas?
Thanks.

P.S. Model i create with generator Gii.