using System; namespace Mtxfw.Model { /// /// Article:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class Article { public Article() { } #region Model private int _id; private int _senderid; private int _receiverid; private string _title; private DateTime? _addtime; private string _author; private string _content; private string _content2; private string _categoryid; private int _parentid = 0;//ParentID<6 网站底部栏目 ParentID=6关于我们 ParentID=7企业介绍 ParentID=8健康知识 ParentID=9 发图素材 ParentID=10 短视频 ParentID=11 新闻中心 ParentID=12 微信栏目 ParentID=13 微信文章 ParentID=14释放贡献值视频 15赚贡献值视频 16开屏视频 17资讯 18释放广告积分视频 19操作教程 20系统信息 21聊天信息 22动态信息 23动态信息评论 24新手学堂 28弹窗信息 29表示推荐视频 30表示新闻子文章 31表示单篇文章 32 33 34举报信息 private string _Paths; private string _Paths2; private string _KeyWords; //微信关键词自动回复时设置的关键词//设置短视频观看密码 private string _media_id;//发送的视频的媒体ID private string _thumb_media_id;//缩略图的媒体ID//临时保存七牛转码ID private int _jlsecond; //奖励秒数 private Double _xfjmoney; //消费金 private Double _tfllmoney; //投放流量 private int _zscs; //展示次数 private Double _gxzmoney; //贡献值 private int _ltype;//链接类型/横屏或竖屏 private int _csday;//次数 private Decimal _latitude;//纬度 private Decimal _longitude;//经度 private int _wtype; //微信类型 0被添加时回复/未回复,1消息自动回复/已回复,2关键词自动回复 3群发信息 类型0新闻公告信息 1转账信息 2充值审核信息 3提现审核信息 4订单通知 5任务消息 6留言评论信息 7私聊信息 8群聊信息 9公司会议信息 10私信信息 /视频分享数量 /可播放次数 private int _wtype2; //微信类型 0文本/会员问题 1图文/管理员回复 2音乐//语音或视频多少秒//文章点赞数量 private int _LinkID; //排序 是否删除发送者聊天信息0否1是 private int _hasRead;//是否已阅读 0否1是//短视频权限0完全公开1私密 private int _Seef;//是否已审核 0否1是 是否删除接受者聊天信息0否1是 private int _IFTJ;//是否推荐 0否1是 private int _IFTop;//是否置顶 0否1是 private int _gtype; //类型,0总公司 1分公司 2分公司 /// /// /// public int id { set { _id = value; } get { return _id; } } /// /// /// public int senderid { set { _senderid = value; } get { return _senderid; } } /// /// /// public int receiverid { set { _receiverid = value; } get { return _receiverid; } } /// /// /// public string Title { set { _title = value; } get { return _title; } } /// /// /// public DateTime? AddTime { set { _addtime = value; } get { return _addtime; } } /// /// /// public string Author { set { _author = value; } get { return _author; } } /// /// /// public string Content { set { _content = value; } get { return _content; } } /// /// /// public string Content2 { set { _content2 = value; } get { return _content2; } } /// /// /// public string CategoryId { set { _categoryid = value; } get { return _categoryid; } } /// /// /// public int ParentID { set { _parentid = value; } get { return _parentid; } } /// /// /// public string Paths { set { _Paths = value; } get { return _Paths; } } /// /// /// public string Paths2 { set { _Paths2 = value; } get { return _Paths2; } } /// /// /// public string KeyWords { set { _KeyWords = value; } get { return _KeyWords; } } /// /// /// public string media_id { set { _media_id = value; } get { return _media_id; } } /// /// /// public string thumb_media_id { set { _thumb_media_id = value; } get { return _thumb_media_id; } } /// /// /// public int jlsecond { set { _jlsecond = value; } get { return _jlsecond; } } /// /// /// public Double xfjmoney { set { _xfjmoney = value; } get { return _xfjmoney; } } /// /// /// public Double tfllmoney { set { _tfllmoney = value; } get { return _tfllmoney; } } /// /// /// public int zscs { set { _zscs = value; } get { return _zscs; } } /// /// /// public Double gxzmoney { set { _gxzmoney = value; } get { return _gxzmoney; } } /// /// /// public int ltype { set { _ltype = value; } get { return _ltype; } } /// /// /// public int csday { set { _csday = value; } get { return _csday; } } /// /// /// public Decimal latitude { set { _latitude = value; } get { return _latitude; } } /// /// /// public Decimal longitude { set { _longitude = value; } get { return _longitude; } } /// /// /// public int wtype { set { _wtype = value; } get { return _wtype; } } /// /// /// public int wtype2 { set { _wtype2 = value; } get { return _wtype2; } } /// /// /// public int LinkID { set { _LinkID = value; } get { return _LinkID; } } /// /// /// public int hasRead { set { _hasRead = value; } get { return _hasRead; } } /// /// /// public int Seef { set { _Seef = value; } get { return _Seef; } } /// /// /// public int IFTJ { set { _IFTJ = value; } get { return _IFTJ; } } /// /// /// public int IFTop { set { _IFTop = value; } get { return _IFTop; } } /// /// /// public int gtype { set { _gtype = value; } get { return _gtype; } } #endregion Model } }