errCodeObj.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace CommonObj.model
  6. {
  7. public class errCodeObj
  8. {
  9. [JsonProperty("id")]
  10. public string id { get; set; }
  11. [JsonProperty("errCode")]
  12. public string errCode { get; set; }
  13. [JsonProperty("msg0")]
  14. public string msg0 { get; set; }
  15. [JsonProperty("msg1")]
  16. public string msg1 { get; set; }
  17. [JsonProperty("msg2")]
  18. public string msg2 { get; set; }
  19. [JsonProperty("msg3")]
  20. public string msg3 { get; set; }
  21. [JsonProperty("msg4")]
  22. public string msg4 { get; set; }
  23. [JsonProperty("msg5")]
  24. public string msg5 { get; set; }
  25. [JsonProperty("channel")]
  26. public string channel { get; set; }
  27. [JsonProperty("note")]
  28. public string note { get; set; }
  29. public override string ToString()
  30. {
  31. return JsonConvert.SerializeObject(this);
  32. }
  33. }
  34. }