123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity
- {
- public class UserFeedModel
- {
- #region Model
- private string _feed_content;
- private string _attach_id;
- private int? _feed_id;
- private string _type;
- private string _app;
- private string _app_row_table;
- private int? _app_row_id;
- private int? _froms;
- private int? _comment_all_count;
- private int? _comment_count;
- private int? _repost_count;
- private int? _is_recommend;
- private int? _recommend_time;
- private int? _digg_count;
- private int? _publish_time;
- private string _phone;
- private string _username;
- private string _headurl;
- private string _uname;
- private string _location;
- /// <summary>
- ///
- /// </summary>
- public string feed_content
- {
- set { _feed_content = value; }
- get { return _feed_content; }
- }
- /// <summary>
- ///
- /// </summary>
- public string attach_id
- {
- set { _attach_id = value; }
- get { return _attach_id; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? feed_id
- {
- set { _feed_id = value; }
- get { return _feed_id; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? uid
- {
- get; set;
- }
- /// <summary>
- ///
- /// </summary>
- public string type
- {
- set { _type = value; }
- get { return _type; }
- }
- /// <summary>
- ///
- /// </summary>
- public string app
- {
- set { _app = value; }
- get { return _app; }
- }
- /// <summary>
- ///
- /// </summary>
- public string app_row_table
- {
- set { _app_row_table = value; }
- get { return _app_row_table; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? app_row_id
- {
- set { _app_row_id = value; }
- get { return _app_row_id; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? froms
- {
- set { _froms = value; }
- get { return _froms; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? comment_all_count
- {
- set { _comment_all_count = value; }
- get { return _comment_all_count; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? comment_count
- {
- set { _comment_count = value; }
- get { return _comment_count; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? repost_count
- {
- set { _repost_count = value; }
- get { return _repost_count; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? is_recommend
- {
- set { _is_recommend = value; }
- get { return _is_recommend; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? recommend_time
- {
- set { _recommend_time = value; }
- get { return _recommend_time; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? digg_count
- {
- set { _digg_count = value; }
- get { return _digg_count; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? publish_time
- {
- set { _publish_time = value; }
- get { return _publish_time; }
- }
- /// <summary>
- ///
- /// </summary>
- public string phone
- {
- set { _phone = value; }
- get { return _phone; }
- }
- /// <summary>
- ///
- /// </summary>
- public string username
- {
- set { _username = value; }
- get { return _username; }
- }
- /// <summary>
- ///
- /// </summary>
- public string headurl
- {
- set { _headurl = value; }
- get { return _headurl; }
- }
- /// <summary>
- ///
- /// </summary>
- public string uname
- {
- set { _uname = value; }
- get { return _uname; }
- }
- /// <summary>
- /// 用户积分
- /// </summary>
- public int score
- {
- get; set;
- }
- /// <summary>
- /// 用户经验值
- /// </summary>
- public int experience
- {
- get; set;
- }
- /// <summary>
- ///
- /// </summary>
- public string location
- {
- set { _location = value; }
- get { return _location; }
- }
- #endregion Model
- }
- }
|