using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_RepositoryCategory:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_RepositoryCategory { public T_RepositoryCategory() { } #region Model private int _f_categoryid; private string _f_categoryname; private int? _f_parentid; private string _f_parentpath; private string _f_expand1; private string _f_expand2; private DateTime? _f_createon; private int? _f_createby; /// /// 分类id /// public int F_CategoryId { set { _f_categoryid = value; } get { return _f_categoryid; } } /// /// 分类名称 /// public string F_CategoryName { set { _f_categoryname = value; } get { return _f_categoryname; } } /// /// 父id /// public int? F_ParentId { set { _f_parentid = value; } get { return _f_parentid; } } /// /// 父路径 /// public string F_ParentPath { set { _f_parentpath = value; } get { return _f_parentpath; } } /// /// 扩展 /// 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; } } /// /// 添加时间 /// public DateTime? F_CreateOn { set { _f_createon = value; } get { return _f_createon; } } /// /// 添加人 /// public int? F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } #endregion Model } }