郑许地铁

T_Call_CheckIDDic.cs 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ZXDT.CallCenter.Model
  6. {
  7. /// <summary>
  8. /// T_Call_CheckIDDic:实体类(属性说明自动提取数据库字段的描述信息)
  9. /// </summary>
  10. [Serializable]
  11. public partial class T_Call_CheckIDDic
  12. {
  13. public T_Call_CheckIDDic()
  14. { }
  15. #region Model
  16. private int _f_id;
  17. private int? _f_checkid;
  18. private int? _f_dicid;
  19. private string _f_dicname;
  20. private int? _f_type = 0;
  21. /// <summary>
  22. /// 核查前科信息Id
  23. /// </summary>
  24. public int F_Id
  25. {
  26. set { _f_id = value; }
  27. get { return _f_id; }
  28. }
  29. /// <summary>
  30. /// 核查Id
  31. /// </summary>
  32. public int? F_CheckId
  33. {
  34. set { _f_checkid = value; }
  35. get { return _f_checkid; }
  36. }
  37. /// <summary>
  38. /// 前科及可疑人员分类Id
  39. /// </summary>
  40. public int? F_DicId
  41. {
  42. set { _f_dicid = value; }
  43. get { return _f_dicid; }
  44. }
  45. /// <summary>
  46. ///
  47. /// </summary>
  48. public string F_DicName
  49. {
  50. set { _f_dicname = value; }
  51. get { return _f_dicname; }
  52. }
  53. /// <summary>
  54. /// 核查类型名称
  55. /// </summary>
  56. public int? F_Type
  57. {
  58. set { _f_type = value; }
  59. get { return _f_type; }
  60. }
  61. #endregion Model
  62. }
  63. }