Files
leanote/app/info/Re.go

18 lines
195 B
Go
Raw Normal View History

2014-05-07 13:06:24 +08:00
package info
2015-11-13 17:58:41 +08:00
import ()
2014-05-07 13:06:24 +08:00
// controller ajax返回
type Re struct {
2015-11-13 17:58:41 +08:00
Ok bool
2014-05-07 13:06:24 +08:00
Code int
2015-11-13 17:58:41 +08:00
Msg string
Id string
2014-05-07 13:06:24 +08:00
List interface{}
Item interface{}
}
func NewRe() Re {
return Re{Ok: false}
2015-11-13 17:58:41 +08:00
}