人民医院API

T_Sys_TelTitleData.cs 1.5KB

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