error_code.go 904 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package apis
  2. type TGdErrorCode struct {
  3. Id int64 `json:"id"`
  4. Code string `json:"code"`
  5. Msg string `json:"msg"`
  6. }
  7. type ManagementAddErrorReq struct {
  8. Code string `json:"code"`
  9. Msg string `json:"msg"`
  10. }
  11. type ManagementAddErrorReply struct {
  12. Id int64 `json:"id"`
  13. }
  14. type ManagementDelErrorReq struct {
  15. Id int64 `json:"id"`
  16. }
  17. type ManagementDelErrorReply struct {
  18. }
  19. type ManagementUpdateErrorReq struct {
  20. Id int64 `json:"id"`
  21. Code string `json:"code"`
  22. Msg string `json:"msg"`
  23. }
  24. type ManagementUpdateErrorReply struct {
  25. }
  26. type ManagementGetErrorListReq struct {
  27. PageNumber int `json:"page_number"`
  28. IsAll bool `json:"is_all"`
  29. }
  30. type ManagementGetErrorListReply struct {
  31. Total int `json:"total"`
  32. PageSize int `json:"page_size"`
  33. PageNumber int `json:"page_number"`
  34. ErrorCodeList []TGdErrorCode `json:"error_code_list"`
  35. }