UserFeedModel.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MES.Production.Entity
  7. {
  8. public class UserFeedModel
  9. {
  10. #region Model
  11. private string _feed_content;
  12. private string _attach_id;
  13. private int? _feed_id;
  14. private string _type;
  15. private string _app;
  16. private string _app_row_table;
  17. private int? _app_row_id;
  18. private int? _froms;
  19. private int? _comment_all_count;
  20. private int? _comment_count;
  21. private int? _repost_count;
  22. private int? _is_recommend;
  23. private int? _recommend_time;
  24. private int? _digg_count;
  25. private int? _publish_time;
  26. private string _phone;
  27. private string _username;
  28. private string _headurl;
  29. private string _uname;
  30. private string _location;
  31. /// <summary>
  32. ///
  33. /// </summary>
  34. public string feed_content
  35. {
  36. set { _feed_content = value; }
  37. get { return _feed_content; }
  38. }
  39. /// <summary>
  40. ///
  41. /// </summary>
  42. public string attach_id
  43. {
  44. set { _attach_id = value; }
  45. get { return _attach_id; }
  46. }
  47. /// <summary>
  48. ///
  49. /// </summary>
  50. public int? feed_id
  51. {
  52. set { _feed_id = value; }
  53. get { return _feed_id; }
  54. }
  55. /// <summary>
  56. ///
  57. /// </summary>
  58. public int? uid
  59. {
  60. get; set;
  61. }
  62. /// <summary>
  63. ///
  64. /// </summary>
  65. public string type
  66. {
  67. set { _type = value; }
  68. get { return _type; }
  69. }
  70. /// <summary>
  71. ///
  72. /// </summary>
  73. public string app
  74. {
  75. set { _app = value; }
  76. get { return _app; }
  77. }
  78. /// <summary>
  79. ///
  80. /// </summary>
  81. public string app_row_table
  82. {
  83. set { _app_row_table = value; }
  84. get { return _app_row_table; }
  85. }
  86. /// <summary>
  87. ///
  88. /// </summary>
  89. public int? app_row_id
  90. {
  91. set { _app_row_id = value; }
  92. get { return _app_row_id; }
  93. }
  94. /// <summary>
  95. ///
  96. /// </summary>
  97. public int? froms
  98. {
  99. set { _froms = value; }
  100. get { return _froms; }
  101. }
  102. /// <summary>
  103. ///
  104. /// </summary>
  105. public int? comment_all_count
  106. {
  107. set { _comment_all_count = value; }
  108. get { return _comment_all_count; }
  109. }
  110. /// <summary>
  111. ///
  112. /// </summary>
  113. public int? comment_count
  114. {
  115. set { _comment_count = value; }
  116. get { return _comment_count; }
  117. }
  118. /// <summary>
  119. ///
  120. /// </summary>
  121. public int? repost_count
  122. {
  123. set { _repost_count = value; }
  124. get { return _repost_count; }
  125. }
  126. /// <summary>
  127. ///
  128. /// </summary>
  129. public int? is_recommend
  130. {
  131. set { _is_recommend = value; }
  132. get { return _is_recommend; }
  133. }
  134. /// <summary>
  135. ///
  136. /// </summary>
  137. public int? recommend_time
  138. {
  139. set { _recommend_time = value; }
  140. get { return _recommend_time; }
  141. }
  142. /// <summary>
  143. ///
  144. /// </summary>
  145. public int? digg_count
  146. {
  147. set { _digg_count = value; }
  148. get { return _digg_count; }
  149. }
  150. /// <summary>
  151. ///
  152. /// </summary>
  153. public int? publish_time
  154. {
  155. set { _publish_time = value; }
  156. get { return _publish_time; }
  157. }
  158. /// <summary>
  159. ///
  160. /// </summary>
  161. public string phone
  162. {
  163. set { _phone = value; }
  164. get { return _phone; }
  165. }
  166. /// <summary>
  167. ///
  168. /// </summary>
  169. public string username
  170. {
  171. set { _username = value; }
  172. get { return _username; }
  173. }
  174. /// <summary>
  175. ///
  176. /// </summary>
  177. public string headurl
  178. {
  179. set { _headurl = value; }
  180. get { return _headurl; }
  181. }
  182. /// <summary>
  183. ///
  184. /// </summary>
  185. public string uname
  186. {
  187. set { _uname = value; }
  188. get { return _uname; }
  189. }
  190. /// <summary>
  191. /// 用户积分
  192. /// </summary>
  193. public int score
  194. {
  195. get; set;
  196. }
  197. /// <summary>
  198. /// 用户经验值
  199. /// </summary>
  200. public int experience
  201. {
  202. get; set;
  203. }
  204. /// <summary>
  205. ///
  206. /// </summary>
  207. public string location
  208. {
  209. set { _location = value; }
  210. get { return _location; }
  211. }
  212. #endregion Model
  213. }
  214. }