| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace RMYY_CallCenter_Api.Model
- {
- /// <summary>
- /// T_Sys_Knowledge:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_Knowledge
- {
- public T_Sys_Knowledge()
- { }
- #region Model
- private int _f_id;
- private int? _f_typeid;
- private string _f_title;
- private string _f_content;
- private string _f_description;
- private string _f_keywords;
- private string _f_typename;
- private string _f_files;
- private string _f_createcode;
- private string _f_createname;
- private DateTime? _f_createtime;
- private DateTime? _f_modifytime;
- private string _f_modifycode;
- private string _f_modifyname;
- private int? _f_isdel = 0;
- /// <summary>
- /// 主键id
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 工单类型id
- /// </summary>
- public int? F_TypeId
- {
- set { _f_typeid = value; }
- get { return _f_typeid; }
- }
- /// <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_KeyWords
- {
- set { _f_keywords = value; }
- get { return _f_keywords; }
- }
- /// <summary>
- /// 工单类型名称
- /// </summary>
- public string F_TypeName
- {
- set { _f_typename = value; }
- get { return _f_typename; }
- }
- /// <summary>
- /// 附件id
- /// </summary>
- public string F_Files
- {
- set { _f_files = value; }
- get { return _f_files; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- public string F_CreateCode
- {
- set { _f_createcode = value; }
- get { return _f_createcode; }
- }
- /// <summary>
- /// 创建人姓名
- /// </summary>
- public string F_CreateName
- {
- set { _f_createname = value; }
- get { return _f_createname; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- public DateTime? F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- public DateTime? F_ModifyTime
- {
- set { _f_modifytime = value; }
- get { return _f_modifytime; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- public string F_ModifyCode
- {
- set { _f_modifycode = value; }
- get { return _f_modifycode; }
- }
- /// <summary>
- /// 修改人姓名
- /// </summary>
- public string F_ModifyName
- {
- set { _f_modifyname = value; }
- get { return _f_modifyname; }
- }
- /// <summary>
- /// 是否删除
- /// </summary>
- public int? F_IsDel
- {
- set { _f_isdel = value; }
- get { return _f_isdel; }
- }
- #endregion Model
- }
- }
|