using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace CallCenterApi.Model { /// /// submit_RePush:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class submit_RePush { public submit_RePush() { } #region Model private int _f_id; private string _f_content; private string _f_url; private int? _code; private DateTime? _createtime; private string _errormsg; private string _title; private int? _sequence; /// /// /// public int F_ID { set { _f_id = value; } get { return _f_id; } } /// /// /// public string F_Content { set { _f_content = value; } get { return _f_content; } } /// /// /// public string F_Url { set { _f_url = value; } get { return _f_url; } } /// /// /// public int? Code { set { _code = value; } get { return _code; } } /// /// /// public DateTime? CreateTime { set { _createtime = value; } get { return _createtime; } } /// /// /// public string ErrorMsg { set { _errormsg = value; } get { return _errormsg; } } /// /// /// public string Title { set { _title = value; } get { return _title; } } /// /// /// public int? Sequence { set { _sequence = value; } get { return _sequence; } } public int? number { set; get; } #endregion Model } }