jp_customer_healthcheckup.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. using System;
  2. namespace Com.Jpsoft.Hospital.Model
  3. {
  4. /// <summary>
  5. /// 实体类jp_customer_healthcheckup 。(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. public class jp_customer_healthcheckup
  8. {
  9. public jp_customer_healthcheckup()
  10. {}
  11. #region Model
  12. private int _hc_id;
  13. private int _hc_areaid;
  14. private string _hc_corp;
  15. private string _hc_name;
  16. private string _hc_sex;
  17. private int _hc_age;
  18. private string _hc_checkobj;
  19. private string _hc_result;
  20. private string _hc_recommend;
  21. private string _hc_tel1;
  22. private string _hc_tel2;
  23. private string _hc_remark;
  24. private DateTime _hc_createdate;
  25. private bool _hc_isvisit;
  26. private DateTime? _hc_nextvisitdate;
  27. private string _hc_ybtype;
  28. /// <summary>
  29. /// 体检客户ID
  30. /// </summary>
  31. public int hc_id
  32. {
  33. set{ _hc_id=value;}
  34. get{return _hc_id;}
  35. }
  36. /// <summary>
  37. /// 区域
  38. /// </summary>
  39. public int hc_areaid
  40. {
  41. set{ _hc_areaid=value;}
  42. get{return _hc_areaid;}
  43. }
  44. /// <summary>
  45. ///
  46. /// </summary>
  47. public string hc_corp
  48. {
  49. set{ _hc_corp=value;}
  50. get{return _hc_corp;}
  51. }
  52. /// <summary>
  53. /// 姓名
  54. /// </summary>
  55. public string hc_name
  56. {
  57. set{ _hc_name=value;}
  58. get{return _hc_name;}
  59. }
  60. /// <summary>
  61. /// 性别
  62. /// </summary>
  63. public string hc_sex
  64. {
  65. set{ _hc_sex=value;}
  66. get{return _hc_sex;}
  67. }
  68. /// <summary>
  69. /// 年龄
  70. /// </summary>
  71. public int hc_age
  72. {
  73. set{ _hc_age=value;}
  74. get{return _hc_age;}
  75. }
  76. /// <summary>
  77. /// 体检科目
  78. /// </summary>
  79. public string hc_checkobj
  80. {
  81. set{ _hc_checkobj=value;}
  82. get{return _hc_checkobj;}
  83. }
  84. /// <summary>
  85. /// 结论
  86. /// </summary>
  87. public string hc_result
  88. {
  89. set{ _hc_result=value;}
  90. get{return _hc_result;}
  91. }
  92. /// <summary>
  93. /// 医疗建议
  94. /// </summary>
  95. public string hc_recommend
  96. {
  97. set{ _hc_recommend=value;}
  98. get{return _hc_recommend;}
  99. }
  100. /// <summary>
  101. /// 电话1
  102. /// </summary>
  103. public string hc_tel1
  104. {
  105. set{ _hc_tel1=value;}
  106. get{return _hc_tel1;}
  107. }
  108. /// <summary>
  109. /// 电话2
  110. /// </summary>
  111. public string hc_tel2
  112. {
  113. set{ _hc_tel2=value;}
  114. get{return _hc_tel2;}
  115. }
  116. /// <summary>
  117. /// 备注
  118. /// </summary>
  119. public string hc_remark
  120. {
  121. set{ _hc_remark=value;}
  122. get{return _hc_remark;}
  123. }
  124. /// <summary>
  125. /// 创建时间
  126. /// </summary>
  127. public DateTime hc_createdate
  128. {
  129. set{ _hc_createdate=value;}
  130. get{return _hc_createdate;}
  131. }
  132. /// <summary>
  133. /// 是否可随访
  134. /// </summary>
  135. public bool hc_isvisit
  136. {
  137. set{ _hc_isvisit=value;}
  138. get{return _hc_isvisit;}
  139. }
  140. /// <summary>
  141. /// 下次随访问时间
  142. /// </summary>
  143. public DateTime? hc_nextvisitdate
  144. {
  145. set{ _hc_nextvisitdate=value;}
  146. get{return _hc_nextvisitdate;}
  147. }
  148. /// <summary>
  149. /// 医保类别(1医保、2居民医保、3农合、4自费)和5商保
  150. /// </summary>
  151. public string hc_ybtype
  152. {
  153. set{ _hc_ybtype=value;}
  154. get{return _hc_ybtype;}
  155. }
  156. #endregion Model
  157. }
  158. }