using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ZXDT.CallCenter.Model { /// /// T_Call_CheckIDDic:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Call_CheckIDDic { public T_Call_CheckIDDic() { } #region Model private int _f_id; private int? _f_checkid; private int? _f_dicid; private string _f_dicname; private int? _f_type = 0; /// /// 核查前科信息Id /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 核查Id /// public int? F_CheckId { set { _f_checkid = value; } get { return _f_checkid; } } /// /// 前科及可疑人员分类Id /// public int? F_DicId { set { _f_dicid = value; } get { return _f_dicid; } } /// /// /// public string F_DicName { set { _f_dicname = value; } get { return _f_dicname; } } /// /// 核查类型名称 /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } #endregion Model } }