足力健后端,使用.netcore版本,合并1个项目使用

auto_cdr.cs 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace System.Model.Call
  5. {
  6. /// <summary>
  7. /// auto_cdr:实体类(属性说明自动提取数据库字段的描述信息)
  8. /// </summary>
  9. [Serializable]
  10. public partial class auto_cdr
  11. {
  12. public auto_cdr()
  13. { }
  14. #region Model
  15. private long _id;
  16. private string _uuid;
  17. private string _agent;
  18. private string _caller;
  19. private string _callee;
  20. private DateTime? _create_time;
  21. private DateTime? _ring_time;
  22. private DateTime? _answer_time;
  23. private DateTime? _end_time;
  24. private string _record_path;
  25. private long? _task_id;
  26. private string _hangup_cause;
  27. /// <summary>
  28. /// auto_increment
  29. /// </summary>
  30. public long id
  31. {
  32. set { _id = value; }
  33. get { return _id; }
  34. }
  35. /// <summary>
  36. ///
  37. /// </summary>
  38. public string uuid
  39. {
  40. set { _uuid = value; }
  41. get { return _uuid; }
  42. }
  43. /// <summary>
  44. ///
  45. /// </summary>
  46. public string agent
  47. {
  48. set { _agent = value; }
  49. get { return _agent; }
  50. }
  51. /// <summary>
  52. ///
  53. /// </summary>
  54. public string caller
  55. {
  56. set { _caller = value; }
  57. get { return _caller; }
  58. }
  59. /// <summary>
  60. ///
  61. /// </summary>
  62. public string callee
  63. {
  64. set { _callee = value; }
  65. get { return _callee; }
  66. }
  67. /// <summary>
  68. ///
  69. /// </summary>
  70. public DateTime? create_time
  71. {
  72. set { _create_time = value; }
  73. get { return _create_time; }
  74. }
  75. /// <summary>
  76. ///
  77. /// </summary>
  78. public DateTime? ring_time
  79. {
  80. set { _ring_time = value; }
  81. get { return _ring_time; }
  82. }
  83. /// <summary>
  84. ///
  85. /// </summary>
  86. public DateTime? answer_time
  87. {
  88. set { _answer_time = value; }
  89. get { return _answer_time; }
  90. }
  91. /// <summary>
  92. ///
  93. /// </summary>
  94. public DateTime? end_time
  95. {
  96. set { _end_time = value; }
  97. get { return _end_time; }
  98. }
  99. /// <summary>
  100. ///
  101. /// </summary>
  102. public string record_path
  103. {
  104. set { _record_path = value; }
  105. get { return _record_path; }
  106. }
  107. /// <summary>
  108. ///
  109. /// </summary>
  110. public long? task_id
  111. {
  112. set { _task_id = value; }
  113. get { return _task_id; }
  114. }
  115. /// <summary>
  116. ///
  117. /// </summary>
  118. public string hangup_cause
  119. {
  120. set { _hangup_cause = value; }
  121. get { return _hangup_cause; }
  122. }
  123. #endregion Model
  124. }
  125. }