郑州颐和随访系统

T_Sys_Patirnt.cs 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. /// <summary>
  9. /// 患者信息表
  10. /// </summary>
  11. [Serializable]
  12. public class T_Sys_Patirnt
  13. {
  14. public T_Sys_Patirnt()
  15. { }
  16. #region Model
  17. private int _f_patirntid;
  18. private string _f_department;
  19. private string _f_patirntname;
  20. private DateTime _f_ptime;
  21. private string _f_phone;
  22. private int _f_sex;
  23. private int _f_age;
  24. private string _f_diagnosis;
  25. private string _f_doctor;
  26. private int _f_followUp;
  27. private int _f_deleteFlag;
  28. private int _f_satisfaction;
  29. private string _f_note;
  30. private DateTime _f_followUpTime;
  31. private int _f_callId;
  32. private string _f_lvyin;
  33. private int _f_actionid;
  34. /// <summary>
  35. /// 患者id
  36. /// </summary>
  37. public int PatirntID
  38. {
  39. set { _f_patirntid = value; }
  40. get { return _f_patirntid; }
  41. }
  42. /// <summary>
  43. /// 科室
  44. /// </summary>
  45. public string Department
  46. {
  47. set { _f_department = value; }
  48. get { return _f_department; }
  49. }
  50. /// <summary>
  51. /// 患者姓名
  52. /// </summary>
  53. public string PatirntName
  54. {
  55. set { _f_patirntname = value; }
  56. get { return _f_patirntname; }
  57. }
  58. /// <summary>
  59. /// 时间
  60. /// </summary>
  61. public DateTime PTime
  62. {
  63. set { _f_ptime = value; }
  64. get { return _f_ptime; }
  65. }
  66. /// <summary>
  67. /// 电话
  68. /// </summary>
  69. public string Phone
  70. {
  71. set { _f_phone = value; }
  72. get { return _f_phone; }
  73. }
  74. /// <summary>
  75. /// 性别 1:男 2:女
  76. /// </summary>
  77. public int Sex
  78. {
  79. set { _f_sex = value; }
  80. get { return _f_sex; }
  81. }
  82. /// <summary>
  83. /// 年龄
  84. /// </summary>
  85. public int Age
  86. {
  87. set { _f_age = value; }
  88. get { return _f_age; }
  89. }
  90. /// <summary>
  91. /// 诊断
  92. /// </summary>
  93. public string Diagnosis
  94. {
  95. set { _f_diagnosis = value; }
  96. get { return _f_diagnosis; }
  97. }
  98. /// <summary>
  99. /// 医生
  100. /// </summary>
  101. public string Doctor
  102. {
  103. set { _f_doctor = value; }
  104. get { return _f_doctor; }
  105. }
  106. /// <summary>
  107. /// 随访状态 0:未随访 1:已随访
  108. /// </summary>
  109. public int FollowUp
  110. {
  111. set { _f_followUp = value; }
  112. get { return _f_followUp; }
  113. }
  114. /// <summary>
  115. /// 是否删除 0:未删除 1:删除
  116. /// </summary>
  117. public int DeleteFlag
  118. {
  119. set { _f_deleteFlag = value;}
  120. get { return _f_deleteFlag; }
  121. }
  122. /// <summary>
  123. /// 满意度 0:不满意 1:满意 2:表扬
  124. /// </summary>
  125. public int Satisfaction
  126. {
  127. set { _f_satisfaction = value; }
  128. get { return _f_satisfaction; }
  129. }
  130. /// <summary>
  131. /// 备注
  132. /// </summary>
  133. public string Note
  134. {
  135. set { _f_note = value; }
  136. get { return _f_note; }
  137. }
  138. /// <summary>
  139. /// 录音
  140. /// </summary>
  141. public string Lvyin
  142. {
  143. set { _f_lvyin = value; }
  144. get { return _f_lvyin; }
  145. }
  146. /// <summary>
  147. /// 随访时间
  148. /// </summary>
  149. public DateTime FollowUpTime
  150. {
  151. set { _f_followUpTime = value; }
  152. get { return _f_followUpTime; }
  153. }
  154. /// <summary>
  155. /// 通话记录Id
  156. /// </summary>
  157. public int CallId
  158. {
  159. set { _f_callId = value; }
  160. get { return _f_callId; }
  161. }
  162. public int ActionID
  163. {
  164. set { _f_actionid = value; }
  165. get { return _f_actionid; }
  166. }
  167. public string lvlj { set; get; }
  168. #endregion Model
  169. }
  170. }