using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_RepositoryInformation:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_RepositoryInformation { public T_RepositoryInformation() { } #region Model private int _f_repositoryid; private int? _f_categoryid; private int? _f_customerid; private string _f_customername; private int? _f_manid; private string _f_manname; private string _f_title; private string _f_content; private string _f_description; private string _f_comments; private string _f_url; private string _f_keywords; private string _f_expand1; private string _f_expand2; private int? _f_intexpand1; private DateTime? _f_createon; private int? _f_createby; private string _f_createname; private DateTime? _f_modifyon; private int? _f_modifyby; private string _f_modifyname; private int _f_deleteflag = 0; /// /// /// public int F_RepositoryId { set { _f_repositoryid = value; } get { return _f_repositoryid; } } /// /// /// public int? F_CategoryId { set { _f_categoryid = value; } get { return _f_categoryid; } } /// /// /// public int? F_CustomerId { set { _f_customerid = value; } get { return _f_customerid; } } /// /// /// public string F_CustomerName { set { _f_customername = value; } get { return _f_customername; } } /// /// /// public int? F_ManId { set { _f_manid = value; } get { return _f_manid; } } /// /// /// public string F_ManName { set { _f_manname = value; } get { return _f_manname; } } /// /// /// public string F_Title { set { _f_title = value; } get { return _f_title; } } /// /// /// public string F_Content { set { _f_content = value; } get { return _f_content; } } /// /// /// public string F_Description { set { _f_description = value; } get { return _f_description; } } /// /// /// public string F_Comments { set { _f_comments = value; } get { return _f_comments; } } /// /// /// public string F_Url { set { _f_url = value; } get { return _f_url; } } /// /// /// public string F_KeyWords { set { _f_keywords = value; } get { return _f_keywords; } } /// /// /// public string F_Expand1 { set { _f_expand1 = value; } get { return _f_expand1; } } /// /// 附件ids /// public string F_Expand2 { set { _f_expand2 = value; } get { return _f_expand2; } } /// /// /// public int? F_IntExpand1 { set { _f_intexpand1 = value; } get { return _f_intexpand1; } } /// /// /// public DateTime? F_CreateOn { set { _f_createon = value; } get { return _f_createon; } } /// /// /// public int? F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } /// /// /// public string F_CreateName { set { _f_createname = value; } get { return _f_createname; } } /// /// /// public DateTime? F_ModifyOn { set { _f_modifyon = value; } get { return _f_modifyon; } } /// /// /// public int? F_ModifyBy { set { _f_modifyby = value; } get { return _f_modifyby; } } /// /// /// public string F_ModifyName { set { _f_modifyname = value; } get { return _f_modifyname; } } /// /// /// public int F_DeleteFlag { set { _f_deleteflag = value; } get { return _f_deleteflag; } } #endregion Model } }