2020-03-29 14:47:46 +08:00

10 lines
161 B
Go

package base
// Result present a handle result
type Result struct {
// 200 - ok; 300 -error
Code int
Msg string
Data interface{} `json:"Data,omitempty"`
}