| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- using System;
- namespace YTSoft.BaseCallCenter.Model
- {
- /// <summary>
- /// T_RepositoryInformation:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [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;
- private int? _F_IsOrPrivate = 0;
- /// <summary>
- ///
- /// </summary>
- public int F_RepositoryId
- {
- set{ _f_repositoryid=value;}
- get{return _f_repositoryid;}
- }
- /// <summary>
- /// 知识库公有私有状态 公有0 私有 1
- /// </summary>
- public int? F_IsOrPrivate
- {
- set { _F_IsOrPrivate = value; }
- get { return _F_IsOrPrivate; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_CategoryId
- {
- set{ _f_categoryid=value;}
- get{return _f_categoryid;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_CustomerId
- {
- set{ _f_customerid=value;}
- get{return _f_customerid;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CustomerName
- {
- set{ _f_customername=value;}
- get{return _f_customername;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_ManId
- {
- set{ _f_manid=value;}
- get{return _f_manid;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_ManName
- {
- set{ _f_manname=value;}
- get{return _f_manname;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Title
- {
- set{ _f_title=value;}
- get{return _f_title;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Content
- {
- set{ _f_content=value;}
- get{return _f_content;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Description
- {
- set{ _f_description=value;}
- get{return _f_description;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Comments
- {
- set{ _f_comments=value;}
- get{return _f_comments;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Url
- {
- set{ _f_url=value;}
- get{return _f_url;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_KeyWords
- {
- set{ _f_keywords=value;}
- get{return _f_keywords;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Expand1
- {
- set{ _f_expand1=value;}
- get{return _f_expand1;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_Expand2
- {
- set{ _f_expand2=value;}
- get{return _f_expand2;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IntExpand1
- {
- set{ _f_intexpand1=value;}
- get{return _f_intexpand1;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateOn
- {
- set{ _f_createon=value;}
- get{return _f_createon;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_CreateBy
- {
- set{ _f_createby=value;}
- get{return _f_createby;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CreateName
- {
- set{ _f_createname=value;}
- get{return _f_createname;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_ModifyOn
- {
- set{ _f_modifyon=value;}
- get{return _f_modifyon;}
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_ModifyBy
- {
- set{ _f_modifyby=value;}
- get{return _f_modifyby;}
- }
- /// <summary>
- ///
- /// </summary>
- public string F_ModifyName
- {
- set{ _f_modifyname=value;}
- get{return _f_modifyname;}
- }
- /// <summary>
- ///
- /// </summary>
- public int F_DeleteFlag
- {
- set{ _f_deleteflag=value;}
- get{return _f_deleteflag;}
- }
- #endregion Model
- }
- }
|