ChargeRecord.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.CloudServerData.Model
  6. {
  7. public class ChargeRecord
  8. {
  9. public ChargeRecord()
  10. {
  11. }
  12. long _ID = 0;
  13. /// <summary>
  14. /// ID
  15. /// </summary>
  16. public long ID
  17. {
  18. get { return _ID; }
  19. set { _ID = value; }
  20. }
  21. string _Identifier = "";
  22. /// <summary>
  23. /// 标识符
  24. /// </summary>
  25. public string Identifier
  26. {
  27. get { return _Identifier; }
  28. set { _Identifier = value; }
  29. }
  30. long _ServerID = 0;
  31. /// <summary>
  32. /// 服务器ID
  33. /// </summary>
  34. public long ServerID
  35. {
  36. get { return _ServerID; }
  37. set { _ServerID = value; }
  38. }
  39. string _EID = "";
  40. /// <summary>
  41. /// 企业ID
  42. /// </summary>
  43. public string EID
  44. {
  45. get { return _EID; }
  46. set { _EID = value; }
  47. }
  48. decimal _FlowDataLength = 0;
  49. /// <summary>
  50. /// 实际流量MB
  51. /// </summary>
  52. public decimal FlowDataLength
  53. {
  54. get { return _FlowDataLength; }
  55. set { _FlowDataLength = value; }
  56. }
  57. decimal _UserFlowDataLength = 0;
  58. /// <summary>
  59. /// 用户流量MB
  60. /// </summary>
  61. public decimal UserFlowDataLength
  62. {
  63. get { return _UserFlowDataLength; }
  64. set { _UserFlowDataLength = value; }
  65. }
  66. int _status = 0;
  67. /// <summary>
  68. /// 扣除状态
  69. /// </summary>
  70. public int Status
  71. {
  72. get { return _status; }
  73. set { _status = value; }
  74. }
  75. string _ChargeDateTime = "";
  76. /// <summary>
  77. /// 扣除时间
  78. /// </summary>
  79. public string ChargeDateTime
  80. {
  81. get { return _ChargeDateTime; }
  82. set { _ChargeDateTime = value; }
  83. }
  84. long _StatisticsTime = 0;
  85. /// <summary>
  86. /// 统计时间
  87. /// </summary>
  88. public long StatisticsTime
  89. {
  90. get { return _StatisticsTime; }
  91. set { _StatisticsTime = value; }
  92. }
  93. }
  94. }