dresponse.go 355 B

12345678910111213141516171819
  1. package basket
  2. import (
  3. "encoding/json"
  4. )
  5. type dResponse struct {
  6. IsError bool `json:"error"`
  7. Msg string `json:"msg"`
  8. Message string `json:"message"`
  9. }
  10. func (this *dResponse) String() string {
  11. json, err := json.Marshal(this)
  12. if err != nil {
  13. return `{"msg":"basket_engine_error","message":"` + err.Error() + `"}`
  14. }
  15. return string(json)
  16. }