RadioCardItem.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. using System;
  2. namespace MySystem
  3. {
  4. public class RadioCardItem
  5. {
  6. /**
  7. * 订单号
  8. */
  9. public string orderNo;
  10. /**
  11. * 订单创建时间
  12. */
  13. public string orderCreateTime;
  14. /**
  15. * 用户选择号码
  16. */
  17. public string phoneNo;
  18. /**
  19. * 是否首充(中文):是,否
  20. */
  21. public string firstCharge;
  22. /**
  23. * 首充金额(元)
  24. */
  25. public decimal initialChargeAmount;
  26. /**
  27. * 省
  28. */
  29. public string province;
  30. /**
  31. * 城市
  32. */
  33. public string city;
  34. /**
  35. * 商品名称
  36. */
  37. public string productName;
  38. /**
  39. * 促销活动名称
  40. */
  41. public string promotionName;
  42. /**
  43. * 商品类型名称
  44. */
  45. public string productTypeName;
  46. /**
  47. * 实付金额(元)
  48. */
  49. public decimal paidInAmount;
  50. /**
  51. * 订单状态(中文):待
  52. * 激活、已完成、退款
  53. * 中、未知
  54. */
  55. public string orderStatus;
  56. /**
  57. * 激活状态(中文):待激活、已激活、未知
  58. */
  59. public string activationStatusName;
  60. /**
  61. * 激活时间
  62. */
  63. public string activationTime;
  64. /**
  65. * 开卡人工号
  66. */
  67. public string jobId;
  68. /**
  69. * SIM 卡号
  70. */
  71. public string iccId;
  72. /**
  73. * 机具SN
  74. */
  75. public string posSn;
  76. }
  77. }