CasesEntryHospital.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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 String msg;
  60. /**
  61. * 0-未启用 1-启用
  62. */
  63. private Integer isUsed;
  64. /**
  65. * 单项否决(1-单项否决 0-非)
  66. */
  67. private Integer isReject;
  68. /**
  69. * 备注
  70. */
  71. private String remark;
  72. public Long getId() {
  73. return id;
  74. }
  75. public void setId(Long id) {
  76. this.id = id;
  77. }
  78. public String getIsDeleted() {
  79. return isDeleted;
  80. }
  81. public void setIsDeleted(String isDeleted) {
  82. this.isDeleted = isDeleted;
  83. }
  84. public Date getGmtCreate() {
  85. return gmtCreate;
  86. }
  87. public void setGmtCreate(Date gmtCreate) {
  88. this.gmtCreate = gmtCreate;
  89. }
  90. public Date getGmtModified() {
  91. return gmtModified;
  92. }
  93. public void setGmtModified(Date gmtModified) {
  94. this.gmtModified = gmtModified;
  95. }
  96. public String getCreator() {
  97. return creator;
  98. }
  99. public void setCreator(String creator) {
  100. this.creator = creator;
  101. }
  102. public String getModifier() {
  103. return modifier;
  104. }
  105. public void setModifier(String modifier) {
  106. this.modifier = modifier;
  107. }
  108. public Long getCasesEntryId() {
  109. return casesEntryId;
  110. }
  111. public void setCasesEntryId(Long casesEntryId) {
  112. this.casesEntryId = casesEntryId;
  113. }
  114. public Long getHospitalId() {
  115. return hospitalId;
  116. }
  117. public void setHospitalId(Long hospitalId) {
  118. this.hospitalId = hospitalId;
  119. }
  120. public BigDecimal getScore() {
  121. return score;
  122. }
  123. public void setScore(BigDecimal score) {
  124. this.score = score;
  125. }
  126. public String getMsg() {
  127. return msg;
  128. }
  129. public void setMsg(String msg) {
  130. this.msg = msg;
  131. }
  132. public Integer getIsUsed() {
  133. return isUsed;
  134. }
  135. public void setIsUsed(Integer isUsed) {
  136. this.isUsed = isUsed;
  137. }
  138. public Integer getIsReject() {
  139. return isReject;
  140. }
  141. public void setIsReject(Integer isReject) {
  142. this.isReject = isReject;
  143. }
  144. public String getRemark() {
  145. return remark;
  146. }
  147. public void setRemark(String remark) {
  148. this.remark = remark;
  149. }
  150. @Override
  151. public String toString() {
  152. return "QcCasesEntryHospital{" +
  153. "id=" + id +
  154. ", isDeleted=" + isDeleted +
  155. ", gmtCreate=" + gmtCreate +
  156. ", gmtModified=" + gmtModified +
  157. ", creator=" + creator +
  158. ", modifier=" + modifier +
  159. ", casesEntryId=" + casesEntryId +
  160. ", hospitalId=" + hospitalId +
  161. ", score=" + score +
  162. ", msg=" + msg +
  163. ", isUsed=" + isUsed +
  164. ", isReject=" + isReject +
  165. ", remark=" + remark +
  166. "}";
  167. }
  168. }