QcCasesEntry.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package com.diagbot.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.io.Serializable;
  5. import java.time.LocalDateTime;
  6. /**
  7. * <p>
  8. * 病历条目
  9. * </p>
  10. *
  11. * @author wangfeng
  12. * @since 2020-03-10
  13. */
  14. public class QcCasesEntry implements Serializable {
  15. private static final long serialVersionUID = 1L;
  16. /**
  17. * 主键
  18. */
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Long id;
  21. /**
  22. * 是否删除,N:未删除,Y:删除
  23. */
  24. private String isDeleted;
  25. /**
  26. * 记录创建时间
  27. */
  28. private LocalDateTime gmtCreate;
  29. /**
  30. * 记录修改时间,如果时间是1970年则表示纪录未修改
  31. */
  32. private LocalDateTime gmtModified;
  33. /**
  34. * 创建人,0表示无创建人值
  35. */
  36. private String creator;
  37. /**
  38. * 修改人,如果为0则表示纪录未修改
  39. */
  40. private String modifier;
  41. /**
  42. * 病历id
  43. */
  44. private Long casesId;
  45. /**
  46. * 条目
  47. */
  48. private String name;
  49. /**
  50. * 备注
  51. */
  52. private String remark;
  53. public Long getId() {
  54. return id;
  55. }
  56. public void setId(Long id) {
  57. this.id = id;
  58. }
  59. public String getIsDeleted() {
  60. return isDeleted;
  61. }
  62. public void setIsDeleted(String isDeleted) {
  63. this.isDeleted = isDeleted;
  64. }
  65. public LocalDateTime getGmtCreate() {
  66. return gmtCreate;
  67. }
  68. public void setGmtCreate(LocalDateTime gmtCreate) {
  69. this.gmtCreate = gmtCreate;
  70. }
  71. public LocalDateTime getGmtModified() {
  72. return gmtModified;
  73. }
  74. public void setGmtModified(LocalDateTime gmtModified) {
  75. this.gmtModified = gmtModified;
  76. }
  77. public String getCreator() {
  78. return creator;
  79. }
  80. public void setCreator(String creator) {
  81. this.creator = creator;
  82. }
  83. public String getModifier() {
  84. return modifier;
  85. }
  86. public void setModifier(String modifier) {
  87. this.modifier = modifier;
  88. }
  89. public Long getCasesId() {
  90. return casesId;
  91. }
  92. public void setCasesId(Long casesId) {
  93. this.casesId = casesId;
  94. }
  95. public String getName() {
  96. return name;
  97. }
  98. public void setName(String name) {
  99. this.name = name;
  100. }
  101. public String getRemark() {
  102. return remark;
  103. }
  104. public void setRemark(String remark) {
  105. this.remark = remark;
  106. }
  107. @Override
  108. public String toString() {
  109. return "QcCasesEntry{" +
  110. "id=" + id +
  111. ", isDeleted=" + isDeleted +
  112. ", gmtCreate=" + gmtCreate +
  113. ", gmtModified=" + gmtModified +
  114. ", creator=" + creator +
  115. ", modifier=" + modifier +
  116. ", casesId=" + casesId +
  117. ", name=" + name +
  118. ", remark=" + remark +
  119. "}";
  120. }
  121. }