using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_RepositoryLog:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_RepositoryLog { public T_RepositoryLog() { } #region Model private int _f_logid; private int? _f_repositoryid; private int? _f_action; private string _f_title; private string _f_content; private string _f_description; private string _f_url; private string _f_keywords; private DateTime? _f_createon; private int? _f_createby; private string _f_expand1; private string _f_expand2; private int? _f_intexpand1; /// /// 日志ID /// public int F_LogId { set { _f_logid = value; } get { return _f_logid; } } /// /// 知识库条目ID /// public int? F_RepositoryId { set { _f_repositoryid = value; } get { return _f_repositoryid; } } /// /// 操作(1添加2修改3删除) /// public int? F_Action { set { _f_action = value; } get { return _f_action; } } /// /// 知识库条目名称 /// 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 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_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; } } #endregion Model } }