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; /// /// /// public string feed_content { set { _feed_content = value; } get { return _feed_content; } } /// /// /// public string attach_id { set { _attach_id = value; } get { return _attach_id; } } /// /// /// public int? feed_id { set { _feed_id = value; } get { return _feed_id; } } /// /// /// public int? uid { get; set; } /// /// /// public string type { set { _type = value; } get { return _type; } } /// /// /// public string app { set { _app = value; } get { return _app; } } /// /// /// public string app_row_table { set { _app_row_table = value; } get { return _app_row_table; } } /// /// /// public int? app_row_id { set { _app_row_id = value; } get { return _app_row_id; } } /// /// /// public int? froms { set { _froms = value; } get { return _froms; } } /// /// /// public int? comment_all_count { set { _comment_all_count = value; } get { return _comment_all_count; } } /// /// /// public int? comment_count { set { _comment_count = value; } get { return _comment_count; } } /// /// /// public int? repost_count { set { _repost_count = value; } get { return _repost_count; } } /// /// /// public int? is_recommend { set { _is_recommend = value; } get { return _is_recommend; } } /// /// /// public int? recommend_time { set { _recommend_time = value; } get { return _recommend_time; } } /// /// /// public int? digg_count { set { _digg_count = value; } get { return _digg_count; } } /// /// /// public int? publish_time { set { _publish_time = value; } get { return _publish_time; } } /// /// /// public string phone { set { _phone = value; } get { return _phone; } } /// /// /// public string username { set { _username = value; } get { return _username; } } /// /// /// public string headurl { set { _headurl = value; } get { return _headurl; } } /// /// /// public string uname { set { _uname = value; } get { return _uname; } } /// /// 用户积分 /// public int score { get; set; } /// /// 用户经验值 /// public int experience { get; set; } /// /// /// public string location { set { _location = value; } get { return _location; } } #endregion Model } }