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