周口郸城医院 DanChengCallCenter_API

T_Call_Blacklist.cs 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. /// <summary>
  9. /// T_Call_Blacklist:实体类(属性说明自动提取数据库字段的描述信息)
  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. /// <summary>
  28. /// 黑名单id,自增
  29. /// </summary>
  30. public int F_BlackId
  31. {
  32. set { _f_blackid = value; }
  33. get { return _f_blackid; }
  34. }
  35. /// <summary>
  36. /// 通话记录id
  37. /// </summary>
  38. public string F_CallId
  39. {
  40. set { _f_callid = value; }
  41. get { return _f_callid; }
  42. }
  43. /// <summary>
  44. /// 电话
  45. /// </summary>
  46. public string F_TelPhone
  47. {
  48. set { _f_telphone = value; }
  49. get { return _f_telphone; }
  50. }
  51. /// <summary>
  52. /// 黑名单类型(0:暂时,1:永久,2:已取消)
  53. /// </summary>
  54. public int? F_BlackType
  55. {
  56. set { _f_blacktype = value; }
  57. get { return _f_blacktype; }
  58. }
  59. /// <summary>
  60. /// 设置时间
  61. /// </summary>
  62. public DateTime? F_SetTime
  63. {
  64. set { _f_settime = value; }
  65. get { return _f_settime; }
  66. }
  67. /// <summary>
  68. /// 解除时间
  69. /// </summary>
  70. public DateTime? F_RemoveTime
  71. {
  72. set { _f_removetime = value; }
  73. get { return _f_removetime; }
  74. }
  75. /// <summary>
  76. /// 说明
  77. /// </summary>
  78. public string F_Describe
  79. {
  80. set { _f_describe = value; }
  81. get { return _f_describe; }
  82. }
  83. /// <summary>
  84. ///
  85. /// </summary>
  86. public int? F_UserId
  87. {
  88. set { _f_userid = value; }
  89. get { return _f_userid; }
  90. }
  91. /// <summary>
  92. /// 拦截次数
  93. /// </summary>
  94. public int? F_InterceptNum
  95. {
  96. set { _f_interceptnum = value; }
  97. get { return _f_interceptnum; }
  98. }
  99. /// <summary>
  100. ///
  101. /// </summary>
  102. public bool F_IsDelete
  103. {
  104. set { _f_isdelete = value; }
  105. get { return _f_isdelete; }
  106. }
  107. #endregion Model
  108. }
  109. }