1、实现超级管理员用户管理功能

2、实现超级管理员项目列表功能
3、实现项目成员列表功能
This commit is contained in:
Minho
2017-04-24 18:25:17 +08:00
parent d1b2c52124
commit 1afb119bde
29 changed files with 1152 additions and 105 deletions

View File

@@ -58,7 +58,7 @@ func (m *Comment) Find(id int) error {
func (m *Comment) Update(cols... string) error {
o := orm.NewOrm()
_,err := o.Update(m,cols)
_,err := o.Update(m,cols...)
return err
}