using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// 问题类别表 /// [Serializable] public partial class T_Wo_QuestionManage { public T_Wo_QuestionManage() { } #region Model private int _f_id; private string _f_questionname; private string _f_questioncontent; private int? _f_parentid; private string _f_label; private string _f_dealmethods; private string _f_type; private string _f_remark; private string _f_createby; private DateTime? _f_createon; private int? _f_updatecount; private string _f_updateby; private DateTime? _f_updateon; private int? _f_isdelete; private string _f_deleteby; private DateTime? _f_deleteon; /// /// ID /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 问题名称 /// public string F_QuestionName { set { _f_questionname = value; } get { return _f_questionname; } } /// /// 问题描述及概念 /// public string F_QuestionContent { set { _f_questioncontent = value; } get { return _f_questioncontent; } } /// /// 父级ID /// public int? F_ParentId { set { _f_parentid = value; } get { return _f_parentid; } } /// /// 级别 /// public string F_Label { set { _f_label = value; } get { return _f_label; } } /// /// 处理方式 /// public string F_DealMethods { set { _f_dealmethods = value; } get { return _f_dealmethods; } } /// /// 类型:TS 投诉/CJ 抽检/ZX 咨询及需求 /// public string F_Type { set { _f_type = value; } get { return _f_type; } } /// /// 备注 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// 创建人工号 /// public string F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } /// /// 创建时间 /// public DateTime? F_CreateOn { set { _f_createon = value; } get { return _f_createon; } } /// /// 修改次数 /// public int? F_UpdateCount { set { _f_updatecount = value; } get { return _f_updatecount; } } /// /// 修改人工号 /// public string F_UpdateBy { set { _f_updateby = value; } get { return _f_updateby; } } /// /// 修改时间 /// public DateTime? F_UpdateOn { set { _f_updateon = value; } get { return _f_updateon; } } /// /// 是否删除:0否,1是 /// public int? F_IsDelete { set { _f_isdelete = value; } get { return _f_isdelete; } } /// /// 删除人工号 /// public string F_DeleteBy { set { _f_deleteby = value; } get { return _f_deleteby; } } /// /// 删除时间 /// public DateTime? F_DeleteOn { set { _f_deleteon = value; } get { return _f_deleteon; } } #endregion Model } }