using System; 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 string _f_title; private string _f_content; private string _f_description; private string _f_url; private string _f_keywords; private int? _f_clickcount; private int? _f_ispass; private int? _f_issubmitaudit; private string _f_expand1; private string _f_expand2; private int? _f_intexpand1; private DateTime? _f_createon; private int? _f_createby; private int? _f_auditid; /// /// 知识库条目id /// public int F_RepositoryId { set { _f_repositoryid = value; } get { return _f_repositoryid; } } /// /// 分类id /// public int? F_CategoryId { set { _f_categoryid = value; } get { return _f_categoryid; } } /// /// 知识库条目名称 /// 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_Url { set { _f_url = value; } get { return _f_url; } } /// /// 关键字 /// public string F_KeyWords { set { _f_keywords = value; } get { return _f_keywords; } } /// /// 点击量 /// public int? F_ClickCount { set { _f_clickcount = value; } get { return _f_clickcount; } } /// /// 是否通过审核(1是;-1否;0未审核) /// public int? F_ISPass { set { _f_ispass = value; } get { return _f_ispass; } } /// /// 是否已提交审核(1是;0否) /// public int? F_ISSubmitAudit { set { _f_issubmitaudit = value; } get { return _f_issubmitaudit; } } /// /// 扩展 /// public string F_Expand1 { set { _f_expand1 = value; } get { return _f_expand1; } } /// /// 扩展2 /// public string F_Expand2 { set { _f_expand2 = value; } get { return _f_expand2; } } /// /// Int扩展 /// 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; } } /// /// 审核ID /// public int? F_AuditID { set { _f_auditid = value; } get { return _f_auditid; } } #endregion Model } }