UU跑腿标准版

T_Call_ReasonRecord.cs 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HySoft.BaseCallCenter.Model
  6. {
  7. /// <summary>
  8. /// T_Call_ReasonRecord:实体类(属性说明自动提取数据库字段的描述信息)
  9. /// </summary>
  10. [Serializable]
  11. public partial class T_Call_ReasonRecord
  12. {
  13. public T_Call_ReasonRecord()
  14. { }
  15. #region Model
  16. private int _f_callreasonid;
  17. private int? _f_callid;
  18. private string _f_telphone;
  19. private string _f_lids;
  20. private string _f_lnames;
  21. private int? _f_ltype;
  22. private string _f_remark;
  23. private DateTime? _f_creattime;
  24. private string _f_creatbyid;
  25. private string _f_creatbycode;
  26. private string _f_creatbyname;
  27. private int? _f_deleteflag;
  28. /// <summary>
  29. /// ID
  30. /// </summary>
  31. public int F_CallReasonID
  32. {
  33. set { _f_callreasonid = value; }
  34. get { return _f_callreasonid; }
  35. }
  36. /// <summary>
  37. /// 来电ID
  38. /// </summary>
  39. public int? 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. /// 原因IDs
  54. /// </summary>
  55. public string F_LIDS
  56. {
  57. set { _f_lids = value; }
  58. get { return _f_lids; }
  59. }
  60. /// <summary>
  61. /// 原因总汇
  62. /// </summary>
  63. public string F_LNameS
  64. {
  65. set { _f_lnames = value; }
  66. get { return _f_lnames; }
  67. }
  68. /// <summary>
  69. /// 备注
  70. /// </summary>
  71. public string F_Remark
  72. {
  73. set { _f_remark = value; }
  74. get { return _f_remark; }
  75. }
  76. /// <summary>
  77. /// 创建时间
  78. /// </summary>
  79. public DateTime? F_CreatTime
  80. {
  81. set { _f_creattime = value; }
  82. get { return _f_creattime; }
  83. }
  84. /// <summary>
  85. /// 创建人ID
  86. /// </summary>
  87. public string F_CreatByID
  88. {
  89. set { _f_creatbyid = value; }
  90. get { return _f_creatbyid; }
  91. }
  92. /// <summary>
  93. /// 工号
  94. /// </summary>
  95. public string F_CreatByCode
  96. {
  97. set { _f_creatbycode = value; }
  98. get { return _f_creatbycode; }
  99. }
  100. /// <summary>
  101. /// 姓名
  102. /// </summary>
  103. public string F_CreatByName
  104. {
  105. set { _f_creatbyname = value; }
  106. get { return _f_creatbyname; }
  107. }
  108. /// <summary>
  109. ///
  110. /// </summary>
  111. public int? F_DeleteFlag
  112. {
  113. set { _f_deleteflag = value; }
  114. get { return _f_deleteflag; }
  115. }
  116. /// <summary>
  117. /// 原因类型:1咨询,2临时,3招商
  118. /// </summary>
  119. public int? F_LType
  120. {
  121. get
  122. {
  123. return _f_ltype;
  124. }
  125. set
  126. {
  127. _f_ltype = value;
  128. }
  129. }
  130. #endregion Model
  131. }
  132. }