reply.go 152 B

1234567
  1. package utils
  2. type SuccessReply struct {
  3. Code int `json:"code"`
  4. Message string `json:"message"`
  5. Data interface{} `json:"data"`
  6. }