Files
leanote/app/info/Re.go

18 lines
190 B
Go
Raw Normal View History

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