Няма описание

T_Call_Blacklist.cs 2.0KB

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