济源12345后端

T_Chat_IPList.cs 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. using System;
  2. namespace CallCenterApi.Model
  3. {
  4. /// <summary>
  5. /// T_Chat_IPList:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Chat_IPList
  9. {
  10. public T_Chat_IPList()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private string _f_openid;
  15. private string _f_ip;
  16. private string _f_country;
  17. private string _f_countrycode;
  18. private string _f_area;
  19. private string _f_areacode;
  20. private string _f_region;
  21. private string _f_regioncode;
  22. private string _f_city;
  23. private string _f_citycode;
  24. private string _f_county;
  25. private string _f_countycode;
  26. private string _f_isp;
  27. private string _f_ispcode;
  28. private DateTime? _f_createtime;
  29. private int? _f_type;
  30. /// <summary>
  31. ///
  32. /// </summary>
  33. public int F_Id
  34. {
  35. set { _f_id = value; }
  36. get { return _f_id; }
  37. }
  38. /// <summary>
  39. ///
  40. /// </summary>
  41. public string F_OpenId
  42. {
  43. set { _f_openid = value; }
  44. get { return _f_openid; }
  45. }
  46. /// <summary>
  47. ///
  48. /// </summary>
  49. public string F_IP
  50. {
  51. set { _f_ip = value; }
  52. get { return _f_ip; }
  53. }
  54. /// <summary>
  55. ///
  56. /// </summary>
  57. public string F_Country
  58. {
  59. set { _f_country = value; }
  60. get { return _f_country; }
  61. }
  62. /// <summary>
  63. ///
  64. /// </summary>
  65. public string F_CountryCode
  66. {
  67. set { _f_countrycode = value; }
  68. get { return _f_countrycode; }
  69. }
  70. /// <summary>
  71. ///
  72. /// </summary>
  73. public string F_Area
  74. {
  75. set { _f_area = value; }
  76. get { return _f_area; }
  77. }
  78. /// <summary>
  79. ///
  80. /// </summary>
  81. public string F_AreaCode
  82. {
  83. set { _f_areacode = value; }
  84. get { return _f_areacode; }
  85. }
  86. /// <summary>
  87. ///
  88. /// </summary>
  89. public string F_Region
  90. {
  91. set { _f_region = value; }
  92. get { return _f_region; }
  93. }
  94. /// <summary>
  95. ///
  96. /// </summary>
  97. public string F_RegionCode
  98. {
  99. set { _f_regioncode = value; }
  100. get { return _f_regioncode; }
  101. }
  102. /// <summary>
  103. ///
  104. /// </summary>
  105. public string F_City
  106. {
  107. set { _f_city = value; }
  108. get { return _f_city; }
  109. }
  110. /// <summary>
  111. ///
  112. /// </summary>
  113. public string F_CityCode
  114. {
  115. set { _f_citycode = value; }
  116. get { return _f_citycode; }
  117. }
  118. /// <summary>
  119. ///
  120. /// </summary>
  121. public string F_County
  122. {
  123. set { _f_county = value; }
  124. get { return _f_county; }
  125. }
  126. /// <summary>
  127. ///
  128. /// </summary>
  129. public string F_CountyCode
  130. {
  131. set { _f_countycode = value; }
  132. get { return _f_countycode; }
  133. }
  134. /// <summary>
  135. ///
  136. /// </summary>
  137. public string F_ISP
  138. {
  139. set { _f_isp = value; }
  140. get { return _f_isp; }
  141. }
  142. /// <summary>
  143. ///
  144. /// </summary>
  145. public string F_ISPCode
  146. {
  147. set { _f_ispcode = value; }
  148. get { return _f_ispcode; }
  149. }
  150. /// <summary>
  151. ///
  152. /// </summary>
  153. public DateTime? F_CreateTime
  154. {
  155. set { _f_createtime = value; }
  156. get { return _f_createtime; }
  157. }
  158. /// <summary>
  159. ///
  160. /// </summary>
  161. public int? F_Type
  162. {
  163. set { _f_type = value; }
  164. get { return _f_type; }
  165. }
  166. #endregion Model
  167. }
  168. }