Нет описания

T_Sys_Volunteer.cs 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. using System;
  2. namespace CallCenterApi.Model
  3. {
  4. /// <summary>
  5. /// T_Sys_Volunteer:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Sys_Volunteer
  9. {
  10. public T_Sys_Volunteer()
  11. { }
  12. #region Model
  13. private long _id;
  14. private string _name;
  15. private int? _gender;
  16. private string _nation;
  17. private string _tel;
  18. private string _idcardno;
  19. private string _politicaloutlook;
  20. private string _specialty;
  21. private string _post;
  22. private string _placeofresidence;
  23. private string _serviceintention;
  24. private int? _participatein;
  25. private string _opinion;
  26. private int? _isdelete;
  27. private DateTime? _createtime;
  28. /// <summary>
  29. ///
  30. /// </summary>
  31. public long ID
  32. {
  33. set { _id = value; }
  34. get { return _id; }
  35. }
  36. /// <summary>
  37. ///
  38. /// </summary>
  39. public string Name
  40. {
  41. set { _name = value; }
  42. get { return _name; }
  43. }
  44. /// <summary>
  45. ///
  46. /// </summary>
  47. public int? Gender
  48. {
  49. set { _gender = value; }
  50. get { return _gender; }
  51. }
  52. /// <summary>
  53. ///
  54. /// </summary>
  55. public string Nation
  56. {
  57. set { _nation = value; }
  58. get { return _nation; }
  59. }
  60. /// <summary>
  61. ///
  62. /// </summary>
  63. public string Tel
  64. {
  65. set { _tel = value; }
  66. get { return _tel; }
  67. }
  68. /// <summary>
  69. ///
  70. /// </summary>
  71. public string IDcardNo
  72. {
  73. set { _idcardno = value; }
  74. get { return _idcardno; }
  75. }
  76. /// <summary>
  77. ///
  78. /// </summary>
  79. public string Politicaloutlook
  80. {
  81. set { _politicaloutlook = value; }
  82. get { return _politicaloutlook; }
  83. }
  84. /// <summary>
  85. ///
  86. /// </summary>
  87. public string Specialty
  88. {
  89. set { _specialty = value; }
  90. get { return _specialty; }
  91. }
  92. /// <summary>
  93. ///
  94. /// </summary>
  95. public string Post
  96. {
  97. set { _post = value; }
  98. get { return _post; }
  99. }
  100. /// <summary>
  101. ///
  102. /// </summary>
  103. public string Placeofresidence
  104. {
  105. set { _placeofresidence = value; }
  106. get { return _placeofresidence; }
  107. }
  108. /// <summary>
  109. ///
  110. /// </summary>
  111. public string Serviceintention
  112. {
  113. set { _serviceintention = value; }
  114. get { return _serviceintention; }
  115. }
  116. /// <summary>
  117. ///
  118. /// </summary>
  119. public int? Participatein
  120. {
  121. set { _participatein = value; }
  122. get { return _participatein; }
  123. }
  124. /// <summary>
  125. ///
  126. /// </summary>
  127. public string Opinion
  128. {
  129. set { _opinion = value; }
  130. get { return _opinion; }
  131. }
  132. /// <summary>
  133. ///
  134. /// </summary>
  135. public int? IsDelete
  136. {
  137. set { _isdelete = value; }
  138. get { return _isdelete; }
  139. }
  140. /// <summary>
  141. ///
  142. /// </summary>
  143. public DateTime? CreateTime
  144. {
  145. set { _createtime = value; }
  146. get { return _createtime; }
  147. }
  148. #endregion Model
  149. }
  150. }