How to use GII for genarate module codes

Hi

Can I use gii for generate codes inside a module.I have successfully generated the model class inside the module by specifying "application.modules.admin.models". But when I previewed CRUD for above model it shows main application path, not the model path. How can I change CRUD code saving path.

Thanks

Aruna

ModelClass = YourModelClass

ControllerId = YourModule/YourController

or

ControllerId = YourModule\YourController

"\" instead of "/"

Thanks It worked.