CasesEntryHospital.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. package com.diagbot.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import java.io.Serializable;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. /**
  9. * <p>
  10. * 病历条目
  11. * </p>
  12. *
  13. * @author wangyu
  14. * @since 2020-03-31
  15. */
  16. @TableName("qc_cases_entry_hospital")
  17. public class CasesEntryHospital implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键
  21. */
  22. @TableId(value = "id", type = IdType.AUTO)
  23. private Long id;
  24. /**
  25. * 是否删除,N:未删除,Y:删除
  26. */
  27. private String isDeleted;
  28. /**
  29. * 记录创建时间
  30. */
  31. private Date gmtCreate;
  32. /**
  33. * 记录修改时间,如果时间是1970年则表示纪录未修改
  34. */
  35. private Date gmtModified;
  36. /**
  37. * 创建人,0表示无创建人值
  38. */
  39. private String creator;
  40. /**
  41. * 修改人,如果为0则表示纪录未修改
  42. */
  43. private String modifier;
  44. /**
  45. * 病历id
  46. */
  47. private Long casesEntryId;
  48. /**
  49. * 医院ID
  50. */
  51. private Long hospitalId;
  52. /**
  53. * 终末扣分值
  54. */
  55. private BigDecimal score;
  56. /**
  57. * 运行扣分值
  58. */
  59. private BigDecimal scoreRun;
  60. /**
  61. * 条目提示信息
  62. */
  63. private String msg;
  64. /**
  65. * 终末质控0-未启用 1-启用
  66. */
  67. private Integer isUsed;
  68. /**
  69. * 运行质控0-未启用 1-启用
  70. */
  71. private Integer isUsedRun;
  72. /**
  73. * 单项否决(1-单项否决 0-非)
  74. */
  75. private Integer isReject;
  76. /**
  77. * 备注
  78. */
  79. private String remark;
  80. public Long getId() {
  81. return id;
  82. }
  83. public void setId(Long id) {
  84. this.id = id;
  85. }
  86. public String getIsDeleted() {
  87. return isDeleted;
  88. }
  89. public void setIsDeleted(String isDeleted) {
  90. this.isDeleted = isDeleted;
  91. }
  92. public Date getGmtCreate() {
  93. return gmtCreate;
  94. }
  95. public void setGmtCreate(Date gmtCreate) {
  96. this.gmtCreate = gmtCreate;
  97. }
  98. public Date getGmtModified() {
  99. return gmtModified;
  100. }
  101. public void setGmtModified(Date gmtModified) {
  102. this.gmtModified = gmtModified;
  103. }
  104. public String getCreator() {
  105. return creator;
  106. }
  107. public void setCreator(String creator) {
  108. this.creator = creator;
  109. }
  110. public String getModifier() {
  111. return modifier;
  112. }
  113. public void setModifier(String modifier) {
  114. this.modifier = modifier;
  115. }
  116. public Long getCasesEntryId() {
  117. return casesEntryId;
  118. }
  119. public void setCasesEntryId(Long casesEntryId) {
  120. this.casesEntryId = casesEntryId;
  121. }
  122. public Long getHospitalId() {
  123. return hospitalId;
  124. }
  125. public void setHospitalId(Long hospitalId) {
  126. this.hospitalId = hospitalId;
  127. }
  128. public BigDecimal getScore() {
  129. return score;
  130. }
  131. public void setScore(BigDecimal score) {
  132. this.score = score;
  133. }
  134. public String getMsg() {
  135. return msg;
  136. }
  137. public void setMsg(String msg) {
  138. this.msg = msg;
  139. }
  140. public Integer getIsUsed() {
  141. return isUsed;
  142. }
  143. public void setIsUsed(Integer isUsed) {
  144. this.isUsed = isUsed;
  145. }
  146. public Integer getIsReject() {
  147. return isReject;
  148. }
  149. public void setIsReject(Integer isReject) {
  150. this.isReject = isReject;
  151. }
  152. public String getRemark() {
  153. return remark;
  154. }
  155. public BigDecimal getScoreRun() {
  156. return scoreRun;
  157. }
  158. public void setScoreRun(BigDecimal scoreRun) {
  159. this.scoreRun = scoreRun;
  160. }
  161. public Integer getIsUsedRun() {
  162. return isUsedRun;
  163. }
  164. public void setIsUsedRun(Integer isUsedRun) {
  165. this.isUsedRun = isUsedRun;
  166. }
  167. public void setRemark(String remark) {
  168. this.remark = remark;
  169. }
  170. @Override
  171. public String toString() {
  172. return "CasesEntryHospital{" +
  173. "id=" + id +
  174. ", isDeleted='" + isDeleted + '\'' +
  175. ", gmtCreate=" + gmtCreate +
  176. ", gmtModified=" + gmtModified +
  177. ", creator='" + creator + '\'' +
  178. ", modifier='" + modifier + '\'' +
  179. ", casesEntryId=" + casesEntryId +
  180. ", hospitalId=" + hospitalId +
  181. ", score=" + score +
  182. ", scoreRun=" + scoreRun +
  183. ", msg='" + msg + '\'' +
  184. ", isUsed=" + isUsed +
  185. ", isUsedRun=" + isUsedRun +
  186. ", isReject=" + isReject +
  187. ", remark='" + remark + '\'' +
  188. '}';
  189. }
  190. }