HisDoctorAdvice.java 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. package com.diagbot.entity.his;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * <p>
  8. *
  9. * </p>
  10. *
  11. * @author lipc
  12. * @since 2021-09-28
  13. */
  14. @TableName("HIS_DOCTOR_ADVICE")
  15. public class HisDoctorAdvice implements Serializable {
  16. private static final long serialVersionUID = 1L;
  17. @TableField("DOCTOR_ADVICE_ID")
  18. private String doctorAdviceId;
  19. @TableField("BEHOSPITAL_CODE")
  20. private String behospitalCode;
  21. @TableField("ORDER_DOCTOR_NAME")
  22. private String orderDoctorName;
  23. @TableField("FREQUENCY")
  24. private String frequency;
  25. @TableField("PARENT_TYPE_ID")
  26. private String parentTypeId;
  27. @TableField("DOCTOR_ADVICE_TYPE")
  28. private String doctorAdviceType;
  29. @TableField("USAGE_NUM")
  30. private String usageNum;
  31. @TableField("USAGE_UNIT")
  32. private String usageUnit;
  33. @TableField("DOSE")
  34. private String dose;
  35. @TableField("DOSE_UNIT")
  36. private String doseUnit;
  37. @TableField("MED_MODE_TYPE")
  38. private String medModeType;
  39. @TableField("DA_FREQUENCY")
  40. private String daFrequency;
  41. @TableField("DA_DEAL_TYPE")
  42. private String daDealType;
  43. @TableField("DA_START_DATE")
  44. private Date daStartDate;
  45. @TableField("DA_ITEM_NAME")
  46. private String daItemName;
  47. @TableField("DA_STATUS")
  48. private String daStatus;
  49. @TableField("DA_STOP_DATE")
  50. private Date daStopDate;
  51. @TableField("DA_GROUP_NO")
  52. private String daGroupNo;
  53. @TableField("DA_PRESCRIPTION_TYPE")
  54. private String daPrescriptionType;
  55. @TableField("MEDICINE_TYPE")
  56. private String medicineType;
  57. @TableField("DA_MED_TYPE")
  58. private String daMedType;
  59. @TableField("DOCTOR_NOTICE")
  60. private String doctorNotice;
  61. @TableField("DOCTOR_ID")
  62. private String doctorId;
  63. @TableField("HOSPITAL_ID")
  64. private Long hospitalId;
  65. @TableField("DOCTOR_NAME")
  66. private String doctorName;
  67. public String getDoctorAdviceId() {
  68. return doctorAdviceId;
  69. }
  70. public void setDoctorAdviceId(String doctorAdviceId) {
  71. this.doctorAdviceId = doctorAdviceId;
  72. }
  73. public String getBehospitalCode() {
  74. return behospitalCode;
  75. }
  76. public void setBehospitalCode(String behospitalCode) {
  77. this.behospitalCode = behospitalCode;
  78. }
  79. public String getOrderDoctorName() {
  80. return orderDoctorName;
  81. }
  82. public void setOrderDoctorName(String orderDoctorName) {
  83. this.orderDoctorName = orderDoctorName;
  84. }
  85. public String getFrequency() {
  86. return frequency;
  87. }
  88. public void setFrequency(String frequency) {
  89. this.frequency = frequency;
  90. }
  91. public String getParentTypeId() {
  92. return parentTypeId;
  93. }
  94. public void setParentTypeId(String parentTypeId) {
  95. this.parentTypeId = parentTypeId;
  96. }
  97. public String getDoctorAdviceType() {
  98. return doctorAdviceType;
  99. }
  100. public void setDoctorAdviceType(String doctorAdviceType) {
  101. this.doctorAdviceType = doctorAdviceType;
  102. }
  103. public String getUsageNum() {
  104. return usageNum;
  105. }
  106. public void setUsageNum(String usageNum) {
  107. this.usageNum = usageNum;
  108. }
  109. public String getUsageUnit() {
  110. return usageUnit;
  111. }
  112. public void setUsageUnit(String usageUnit) {
  113. this.usageUnit = usageUnit;
  114. }
  115. public String getDose() {
  116. return dose;
  117. }
  118. public void setDose(String dose) {
  119. this.dose = dose;
  120. }
  121. public String getDoseUnit() {
  122. return doseUnit;
  123. }
  124. public void setDoseUnit(String doseUnit) {
  125. this.doseUnit = doseUnit;
  126. }
  127. public String getMedModeType() {
  128. return medModeType;
  129. }
  130. public void setMedModeType(String medModeType) {
  131. this.medModeType = medModeType;
  132. }
  133. public String getDaFrequency() {
  134. return daFrequency;
  135. }
  136. public void setDaFrequency(String daFrequency) {
  137. this.daFrequency = daFrequency;
  138. }
  139. public String getDaDealType() {
  140. return daDealType;
  141. }
  142. public void setDaDealType(String daDealType) {
  143. this.daDealType = daDealType;
  144. }
  145. public Date getDaStartDate() {
  146. return daStartDate;
  147. }
  148. public void setDaStartDate(Date daStartDate) {
  149. this.daStartDate = daStartDate;
  150. }
  151. public String getDaItemName() {
  152. return daItemName;
  153. }
  154. public void setDaItemName(String daItemName) {
  155. this.daItemName = daItemName;
  156. }
  157. public String getDaStatus() {
  158. return daStatus;
  159. }
  160. public void setDaStatus(String daStatus) {
  161. this.daStatus = daStatus;
  162. }
  163. public Date getDaStopDate() {
  164. return daStopDate;
  165. }
  166. public void setDaStopDate(Date daStopDate) {
  167. this.daStopDate = daStopDate;
  168. }
  169. public String getDaGroupNo() {
  170. return daGroupNo;
  171. }
  172. public void setDaGroupNo(String daGroupNo) {
  173. this.daGroupNo = daGroupNo;
  174. }
  175. public String getDaPrescriptionType() {
  176. return daPrescriptionType;
  177. }
  178. public void setDaPrescriptionType(String daPrescriptionType) {
  179. this.daPrescriptionType = daPrescriptionType;
  180. }
  181. public String getMedicineType() {
  182. return medicineType;
  183. }
  184. public void setMedicineType(String medicineType) {
  185. this.medicineType = medicineType;
  186. }
  187. public String getDaMedType() {
  188. return daMedType;
  189. }
  190. public void setDaMedType(String daMedType) {
  191. this.daMedType = daMedType;
  192. }
  193. public String getDoctorNotice() {
  194. return doctorNotice;
  195. }
  196. public void setDoctorNotice(String doctorNotice) {
  197. this.doctorNotice = doctorNotice;
  198. }
  199. public String getDoctorId() {
  200. return doctorId;
  201. }
  202. public void setDoctorId(String doctorId) {
  203. this.doctorId = doctorId;
  204. }
  205. public Long getHospitalId() {
  206. return hospitalId;
  207. }
  208. public void setHospitalId(Long hospitalId) {
  209. this.hospitalId = hospitalId;
  210. }
  211. public String getDoctorName() {
  212. return doctorName;
  213. }
  214. public void setDoctorName(String doctorName) {
  215. this.doctorName = doctorName;
  216. }
  217. @Override
  218. public String toString() {
  219. return "HisDoctorAdvice{" +
  220. "doctorAdviceId=" + doctorAdviceId +
  221. ", behospitalCode=" + behospitalCode +
  222. ", orderDoctorName=" + orderDoctorName +
  223. ", frequency=" + frequency +
  224. ", parentTypeId=" + parentTypeId +
  225. ", doctorAdviceType=" + doctorAdviceType +
  226. ", usageNum=" + usageNum +
  227. ", usageUnit=" + usageUnit +
  228. ", dose=" + dose +
  229. ", doseUnit=" + doseUnit +
  230. ", medModeType=" + medModeType +
  231. ", daFrequency=" + daFrequency +
  232. ", daDealType=" + daDealType +
  233. ", daStartDate=" + daStartDate +
  234. ", daItemName=" + daItemName +
  235. ", daStatus=" + daStatus +
  236. ", daStopDate=" + daStopDate +
  237. ", daGroupNo=" + daGroupNo +
  238. ", daPrescriptionType=" + daPrescriptionType +
  239. ", medicineType=" + medicineType +
  240. ", daMedType=" + daMedType +
  241. ", doctorNotice=" + doctorNotice +
  242. ", doctorId=" + doctorId +
  243. ", hospitalId=" + hospitalId +
  244. ", doctorName=" + doctorName +
  245. "}";
  246. }
  247. }