人民医院API

T_Call_Blacklist.cs 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace RMYY_CallCenter_Api.Model
  7. {
  8. /// <summary>
  9. /// 黑名单表
  10. /// </summary>
  11. [Serializable]
  12. public partial class T_Call_Blacklist
  13. {
  14. public T_Call_Blacklist()
  15. { }
  16. #region Model
  17. private int _f_blackid;
  18. private string _f_callid;
  19. private string _f_telphone;
  20. private int? _f_blacktype;
  21. private DateTime? _f_settime;
  22. private DateTime? _f_removetime;
  23. private string _f_describe;
  24. private int? _f_userid;
  25. private int? _f_interceptnum = 0;
  26. private bool _f_isdelete = false;
  27. private DateTime? _f_createtime = DateTime.Now;
  28. /// <summary>
  29. /// 黑名单id,自增
  30. /// </summary>
  31. public int F_BlackId
  32. {
  33. set { _f_blackid = value; }
  34. get { return _f_blackid; }
  35. }
  36. /// <summary>
  37. /// 通话记录id
  38. /// </summary>
  39. public string F_CallId
  40. {
  41. set { _f_callid = value; }
  42. get { return _f_callid; }
  43. }
  44. /// <summary>
  45. /// 电话
  46. /// </summary>
  47. public string F_TelPhone
  48. {
  49. set { _f_telphone = value; }
  50. get { return _f_telphone; }
  51. }
  52. /// <summary>
  53. /// 黑白名单(1黑名单,2白名单)///////////////黑名单类型(0:暂时,1:永久,2:已取消)
  54. /// </summary>
  55. public int? F_BlackType
  56. {
  57. set { _f_blacktype = value; }
  58. get { return _f_blacktype; }
  59. }
  60. /// <summary>
  61. /// 设置时间
  62. /// </summary>
  63. public DateTime? F_SetTime
  64. {
  65. set { _f_settime = value; }
  66. get { return _f_settime; }
  67. }
  68. /// <summary>
  69. /// 解除时间
  70. /// </summary>
  71. public DateTime? F_RemoveTime
  72. {
  73. set { _f_removetime = value; }
  74. get { return _f_removetime; }
  75. }
  76. /// <summary>
  77. /// 说明
  78. /// </summary>
  79. public string F_Describe
  80. {
  81. set { _f_describe = value; }
  82. get { return _f_describe; }
  83. }
  84. /// <summary>
  85. ///
  86. /// </summary>
  87. public int? F_UserId
  88. {
  89. set { _f_userid = value; }
  90. get { return _f_userid; }
  91. }
  92. /// <summary>
  93. /// 拦截次数
  94. /// </summary>
  95. public int? F_InterceptNum
  96. {
  97. set { _f_interceptnum = value; }
  98. get { return _f_interceptnum; }
  99. }
  100. /// <summary>
  101. ///
  102. /// </summary>
  103. public bool F_IsDelete
  104. {
  105. set { _f_isdelete = value; }
  106. get { return _f_isdelete; }
  107. }
  108. /// <summary>
  109. ///
  110. /// </summary>
  111. //public DateTime? F_CreateTime
  112. //{
  113. // set { _f_createtime = value; }
  114. // get { return _f_createtime; }
  115. //}
  116. #endregion Model
  117. }
  118. }