tkcashgame_v4/pkg/entity/common.go

12 lines
187 B
Go

package entity
type Result struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data interface{} `json:"data"`
}
type FailResult struct {
Msg string `json:"msg"`
}