地铁二期项目正式开始

T_Sys_TelTitleData.cs 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System;
  2. namespace YTSoft.BaseCallCenter.Model
  3. {
  4. /// <summary>
  5. /// T_Sys_TelTitleData:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Sys_TelTitleData
  9. {
  10. public T_Sys_TelTitleData()
  11. {}
  12. #region Model
  13. private int _f_id;
  14. private string _f_titlename;
  15. private string _f_keyphonenum;
  16. private int? _f_defphonenumlen;
  17. private string _f_wcode;
  18. /// <summary>
  19. ///
  20. /// </summary>
  21. public int F_Id
  22. {
  23. set{ _f_id=value;}
  24. get{return _f_id;}
  25. }
  26. /// <summary>
  27. ///
  28. /// </summary>
  29. public string F_TitleName
  30. {
  31. set{ _f_titlename=value;}
  32. get{return _f_titlename;}
  33. }
  34. /// <summary>
  35. ///
  36. /// </summary>
  37. public string F_KeyPhoneNum
  38. {
  39. set{ _f_keyphonenum=value;}
  40. get{return _f_keyphonenum;}
  41. }
  42. /// <summary>
  43. ///
  44. /// </summary>
  45. public int? F_DefPhoneNumLen
  46. {
  47. set{ _f_defphonenumlen=value;}
  48. get{return _f_defphonenumlen;}
  49. }
  50. /// <summary>
  51. ///
  52. /// </summary>
  53. public string F_WCode
  54. {
  55. set{ _f_wcode=value;}
  56. get{return _f_wcode;}
  57. }
  58. #endregion Model
  59. }
  60. }