InformationDetail.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package com.diagbot.entity;
  2. import java.io.Serializable;
  3. /**
  4. * <p>
  5. *
  6. * </p>
  7. *
  8. * @author Weixuan Huang
  9. * @since 2019-01-14
  10. */
  11. public class InformationDetail implements Serializable {
  12. /**
  13. * 内容id
  14. */
  15. private Integer id;
  16. /**
  17. * 术语概念id
  18. */
  19. private Integer concept_id;
  20. /**
  21. * 标题
  22. */
  23. private String title;
  24. /**
  25. * 内容
  26. */
  27. private String content;
  28. public Integer getId() {
  29. return id;
  30. }
  31. public void setId(Integer id) {
  32. this.id = id;
  33. }
  34. public Integer getConcept_id() {
  35. return concept_id;
  36. }
  37. public void setConcept_id(Integer concept_id) {
  38. this.concept_id = concept_id;
  39. }
  40. public String getTitle() {
  41. return title;
  42. }
  43. public void setTitle(String title) {
  44. this.title = title;
  45. }
  46. public String getContent() {
  47. return content;
  48. }
  49. public void setContent(String content) {
  50. this.content = content;
  51. }
  52. @Override
  53. public String toString() {
  54. return "Information{" +
  55. "id=" + id +
  56. ", conceptId=" + concept_id +
  57. ", title=" + title +
  58. ", content=" + content +
  59. "}";
  60. }
  61. }