MedQcresultDetail.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. package com.diagbot.entity;
  2. import java.math.BigDecimal;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * <p>
  10. * 质控评分明细信息
  11. 每次评分增加一条信息,前面所有评分is_deleted全部设置为Y
  12. * </p>
  13. *
  14. * @author wangfeng
  15. * @since 2020-06-10
  16. */
  17. public class MedQcresultDetail implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Long id;
  21. /**
  22. * 医院ID
  23. */
  24. private Long hospitalId;
  25. /**
  26. * 病人住院ID
  27. */
  28. private String behospitalCode;
  29. /**
  30. * 模块id
  31. */
  32. private Long casesId;
  33. /**
  34. * 模块总分
  35. */
  36. private BigDecimal casesScore;
  37. /**
  38. * 条目ID
  39. */
  40. private Long casesEntryId;
  41. /**
  42. * 人工修改分值
  43. */
  44. private BigDecimal score;
  45. /**
  46. * 提示信息
  47. */
  48. private String msg;
  49. /**
  50. * 质控返回提示信息
  51. */
  52. private String info;
  53. /**
  54. * 单项否决(1-单项否决 0-非)
  55. */
  56. private Integer isReject;
  57. /**
  58. * 初始类型(1:机器,2:人工)
  59. */
  60. private Integer gradeType;
  61. /**
  62. * 操作类型(1:新增,2:删除,3:修改)
  63. */
  64. private Integer optType;
  65. /**
  66. * 是否删除,N:未删除,Y:删除
  67. */
  68. private String isDeleted;
  69. /**
  70. * 记录创建时间
  71. */
  72. private Date gmtCreate;
  73. /**
  74. * 记录修改时间,如果时间是1970年则表示纪录未修改
  75. */
  76. private Date gmtModified;
  77. /**
  78. * 创建人,0表示无创建人值
  79. */
  80. private String creator;
  81. /**
  82. * 修改人,如果为0则表示纪录未修改
  83. */
  84. private String modifier;
  85. /**
  86. * 备注
  87. */
  88. private String remark;
  89. public Long getId() {
  90. return id;
  91. }
  92. public void setId(Long id) {
  93. this.id = id;
  94. }
  95. public Long getHospitalId() {
  96. return hospitalId;
  97. }
  98. public void setHospitalId(Long hospitalId) {
  99. this.hospitalId = hospitalId;
  100. }
  101. public String getBehospitalCode() {
  102. return behospitalCode;
  103. }
  104. public void setBehospitalCode(String behospitalCode) {
  105. this.behospitalCode = behospitalCode;
  106. }
  107. public Long getCasesId() {
  108. return casesId;
  109. }
  110. public void setCasesId(Long casesId) {
  111. this.casesId = casesId;
  112. }
  113. public BigDecimal getCasesScore() {
  114. return casesScore;
  115. }
  116. public void setCasesScore(BigDecimal casesScore) {
  117. this.casesScore = casesScore;
  118. }
  119. public Long getCasesEntryId() {
  120. return casesEntryId;
  121. }
  122. public void setCasesEntryId(Long casesEntryId) {
  123. this.casesEntryId = casesEntryId;
  124. }
  125. public BigDecimal getScore() {
  126. return score;
  127. }
  128. public void setScore(BigDecimal score) {
  129. this.score = score;
  130. }
  131. public String getMsg() {
  132. return msg;
  133. }
  134. public void setMsg(String msg) {
  135. this.msg = msg;
  136. }
  137. public String getInfo() {
  138. return info;
  139. }
  140. public void setInfo(String info) {
  141. this.info = info;
  142. }
  143. public Integer getIsReject() {
  144. return isReject;
  145. }
  146. public void setIsReject(Integer isReject) {
  147. this.isReject = isReject;
  148. }
  149. public Integer getGradeType() {
  150. return gradeType;
  151. }
  152. public void setGradeType(Integer gradeType) {
  153. this.gradeType = gradeType;
  154. }
  155. public Integer getOptType() {
  156. return optType;
  157. }
  158. public void setOptType(Integer optType) {
  159. this.optType = optType;
  160. }
  161. public String getIsDeleted() {
  162. return isDeleted;
  163. }
  164. public void setIsDeleted(String isDeleted) {
  165. this.isDeleted = isDeleted;
  166. }
  167. public Date getGmtCreate() {
  168. return gmtCreate;
  169. }
  170. public void setGmtCreate(Date gmtCreate) {
  171. this.gmtCreate = gmtCreate;
  172. }
  173. public Date getGmtModified() {
  174. return gmtModified;
  175. }
  176. public void setGmtModified(Date gmtModified) {
  177. this.gmtModified = gmtModified;
  178. }
  179. public String getCreator() {
  180. return creator;
  181. }
  182. public void setCreator(String creator) {
  183. this.creator = creator;
  184. }
  185. public String getModifier() {
  186. return modifier;
  187. }
  188. public void setModifier(String modifier) {
  189. this.modifier = modifier;
  190. }
  191. public String getRemark() {
  192. return remark;
  193. }
  194. public void setRemark(String remark) {
  195. this.remark = remark;
  196. }
  197. @Override
  198. public String toString() {
  199. return "MedQcresultDetail{" +
  200. "id=" + id +
  201. ", hospitalId=" + hospitalId +
  202. ", behospitalCode=" + behospitalCode +
  203. ", casesId=" + casesId +
  204. ", casesScore=" + casesScore +
  205. ", casesEntryId=" + casesEntryId +
  206. ", score=" + score +
  207. ", msg=" + msg +
  208. ", info=" + info +
  209. ", isReject=" + isReject +
  210. ", gradeType=" + gradeType +
  211. ", optType=" + optType +
  212. ", isDeleted=" + isDeleted +
  213. ", gmtCreate=" + gmtCreate +
  214. ", gmtModified=" + gmtModified +
  215. ", creator=" + creator +
  216. ", modifier=" + modifier +
  217. ", remark=" + remark +
  218. "}";
  219. }
  220. }