fix the controller comments

This commit is contained in:
astaxie 2014-08-07 17:57:07 +08:00
parent 4ddff5264b
commit 41dbb385e7
1 changed files with 1 additions and 1 deletions

View File

@ -624,7 +624,6 @@ package models
MODEL_TPL = `
package models
// oprations for {{modelName}}
{{modelStruct}}
func init() {
@ -757,6 +756,7 @@ func Delete{{modelName}}(id int) (err error) {
CTRL_TPL = `
package controllers
// oprations for {{ctrlName}}
type {{ctrlName}}Controller struct {
beego.Controller
}