Sin descripción

T_Sys_VerificationCode.cs 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. namespace CallCenterApi.Model
  8. {
  9. /// <summary>
  10. /// T_Sys_VerificationCode:实体类(属性说明自动提取数据库字段的描述信息)
  11. /// </summary>
  12. [Serializable]
  13. public partial class T_Sys_VerificationCode
  14. {
  15. public T_Sys_VerificationCode()
  16. { }
  17. #region Model
  18. private int _f_id;
  19. private string _f_code;
  20. private DateTime? _f_createtime;
  21. private string _f_usercode;
  22. private string _f_notes;
  23. private string _f_timestamp;
  24. /// <summary>
  25. ///
  26. /// </summary>
  27. public int F_ID
  28. {
  29. set { _f_id = value; }
  30. get { return _f_id; }
  31. }
  32. /// <summary>
  33. ///
  34. /// </summary>
  35. public string F_Code
  36. {
  37. set { _f_code = value; }
  38. get { return _f_code; }
  39. }
  40. /// <summary>
  41. ///
  42. /// </summary>
  43. public DateTime? F_CreateTime
  44. {
  45. set { _f_createtime = value; }
  46. get { return _f_createtime; }
  47. }
  48. /// <summary>
  49. ///
  50. /// </summary>
  51. public string F_UserCode
  52. {
  53. set { _f_usercode = value; }
  54. get { return _f_usercode; }
  55. }
  56. /// <summary>
  57. ///
  58. /// </summary>
  59. public string F_Notes
  60. {
  61. set { _f_notes = value; }
  62. get { return _f_notes; }
  63. }
  64. /// <summary>
  65. ///
  66. /// </summary>
  67. public string F_Timestamp
  68. {
  69. set { _f_timestamp = value; }
  70. get { return _f_timestamp; }
  71. }
  72. #endregion Model
  73. }
  74. }