10 lines
228 B
Go
10 lines
228 B
Go
|
package serializer
|
||
|
|
||
|
// Response 基础序列化器
|
||
|
type Response struct {
|
||
|
Code int `json:"code"`
|
||
|
Data interface{} `json:"data,omitempty"`
|
||
|
Msg string `json:"msg"`
|
||
|
Error string `json:"error,omitempty"`
|
||
|
}
|