18 lines
195 B
Go
18 lines
195 B
Go
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}
|
|
}
|