| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace HySoft.BaseCallCenter.Model
- {
- /// <summary>
- /// T_Call_Reason:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Call_Reason
- {
- public T_Call_Reason()
- { }
- #region Model
- private int _f_reasonid;
- private string _f_reasonname;
- private int? _f_parentid;
- private string _f_parentname;
- private string _f_allpid;
- private string _f_allpname;
- private int? _f_layer;
- private int? _f_ischildren;
- private int? _f_stype;
- private int? _f_deleteflag;
- private int? _f_createby;
- private string _f_createbycode;
- private string _f_createbyname;
- private DateTime? _f_createon;
- /// <summary>
- ///
- /// </summary>
- public int F_ReasonID
- {
- set { _f_reasonid = value; }
- get { return _f_reasonid; }
- }
- /// <summary>
- /// 来电原因名称
- /// </summary>
- public string F_ReasonName
- {
- set { _f_reasonname = value; }
- get { return _f_reasonname; }
- }
- /// <summary>
- /// 父级ID
- /// </summary>
- public int? F_ParentID
- {
- set { _f_parentid = value; }
- get { return _f_parentid; }
- }
- /// <summary>
- /// 父级名称
- /// </summary>
- public string F_ParentName
- {
- set { _f_parentname = value; }
- get { return _f_parentname; }
- }
- /// <summary>
- /// 父级所有ID
- /// </summary>
- public string F_AllPID
- {
- set { _f_allpid = value; }
- get { return _f_allpid; }
- }
- /// <summary>
- /// 全称
- /// </summary>
- public string F_AllPName
- {
- set { _f_allpname = value; }
- get { return _f_allpname; }
- }
- /// <summary>
- /// 目录级别
- /// </summary>
- public int? F_Layer
- {
- set { _f_layer = value; }
- get { return _f_layer; }
- }
- /// <summary>
- /// 是否包含子级:0是,1否
- /// </summary>
- public int? F_ISChildren
- {
- set { _f_ischildren = value; }
- get { return _f_ischildren; }
- }
- /// <summary>
- /// 展示格式 :1.复选,2.文本
- /// </summary>
- public int? F_SType
- {
- set { _f_stype = value; }
- get { return _f_stype; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_DeleteFlag
- {
- set { _f_deleteflag = value; }
- get { return _f_deleteflag; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_CreateBy
- {
- set { _f_createby = value; }
- get { return _f_createby; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CreateByCode
- {
- set { _f_createbycode = value; }
- get { return _f_createbycode; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_CreateByName
- {
- set { _f_createbyname = value; }
- get { return _f_createbyname; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_CreateOn
- {
- set { _f_createon = value; }
- get { return _f_createon; }
- }
- #endregion Model
- }
- }
|