ReadPackItem.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace IPADDemo.Model
  8. {
  9. public class ReadPackItem
  10. {
  11. [JsonProperty("retcode")]
  12. public int Retcode { get; set; }
  13. [JsonProperty("retmsg")]
  14. public string Retmsg { get; set; }
  15. [JsonProperty("recNum")]
  16. public int RecNum { get; set; }
  17. [JsonProperty("totalNum")]
  18. public int TotalNum { get; set; }
  19. [JsonProperty("totalAmount")]
  20. public int TotalAmount { get; set; }
  21. [JsonProperty("sendId")]
  22. public string SendId { get; set; }
  23. [JsonProperty("amount")]
  24. public int Amount { get; set; }
  25. [JsonProperty("wishing")]
  26. public string Wishing { get; set; }
  27. [JsonProperty("isSender")]
  28. public int IsSender { get; set; }
  29. [JsonProperty("receiveId")]
  30. public string ReceiveId { get; set; }
  31. [JsonProperty("hasWriteAnswer")]
  32. public int HasWriteAnswer { get; set; }
  33. [JsonProperty("operationHeader")]
  34. public object[] OperationHeader { get; set; }
  35. [JsonProperty("hbType")]
  36. public int HbType { get; set; }
  37. [JsonProperty("isContinue")]
  38. public int IsContinue { get; set; }
  39. [JsonProperty("hbStatus")]
  40. public int HbStatus { get; set; }
  41. [JsonProperty("receiveStatus")]
  42. public int ReceiveStatus { get; set; }
  43. [JsonProperty("statusMess")]
  44. public string StatusMess { get; set; }
  45. [JsonProperty("headTitle")]
  46. public string HeadTitle { get; set; }
  47. [JsonProperty("canShare")]
  48. public int CanShare { get; set; }
  49. [JsonProperty("hbKind")]
  50. public int HbKind { get; set; }
  51. [JsonProperty("recAmount")]
  52. public int RecAmount { get; set; }
  53. [JsonProperty("record")]
  54. public object[] Record { get; set; }
  55. [JsonProperty("operationTail")]
  56. public OperationTail OperationTail { get; set; }
  57. [JsonProperty("atomicFunc")]
  58. public AtomicFunc AtomicFunc { get; set; }
  59. [JsonProperty("jumpChange")]
  60. public int JumpChange { get; set; }
  61. [JsonProperty("changeWording")]
  62. public string ChangeWording { get; set; }
  63. [JsonProperty("sendUserName")]
  64. public string SendUserName { get; set; }
  65. }
  66. }