MStdDictEntry.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package com.yihu.ehr.model.standard;
  2. import java.util.Objects;
  3. /**
  4. * 字典项数据模型
  5. *
  6. * @author lincl
  7. * @version 1.0
  8. * @created 2016.2.22
  9. */
  10. public class MStdDictEntry {
  11. //------------------ehr 字段
  12. private Long id;
  13. private Long dictId;//字典ID
  14. private String code;
  15. private String value;
  16. private String desc;
  17. private Integer hashCode;
  18. //-----------------ehr 字段
  19. private String OperationType;
  20. private Long standardId;
  21. private String stdVersion;
  22. public Long getId() {
  23. return id;
  24. }
  25. public void setId(Long id) {
  26. this.id = id;
  27. }
  28. public Long getDictId() {
  29. return dictId;
  30. }
  31. public void setDictId(Long dictId) {
  32. this.dictId = dictId;
  33. }
  34. public String getCode() {
  35. return code;
  36. }
  37. public void setCode(String code) {
  38. this.code = code;
  39. }
  40. public String getDesc() {
  41. return desc;
  42. }
  43. public void setDesc(String desc) {
  44. this.desc = desc;
  45. }
  46. public String getValue() {
  47. return value;
  48. }
  49. public void setValue(String value) {
  50. this.value = value;
  51. }
  52. public Integer getHashCode() {
  53. hashCode = Objects.hash(dictId, code, value, desc);
  54. return hashCode;
  55. }
  56. public void setHashCode(Integer hashCode) {
  57. this.hashCode = hashCode;
  58. }
  59. public Long getStandardId() {
  60. return standardId;
  61. }
  62. public void setStandardId(Long standardId) {
  63. this.standardId = standardId;
  64. }
  65. public String getOperationType() {
  66. return OperationType;
  67. }
  68. public void setOperationType(String operationType) {
  69. OperationType = operationType;
  70. }
  71. public String getStdVersion() {
  72. return stdVersion;
  73. }
  74. public void setStdVersion(String stdVersion) {
  75. this.stdVersion = stdVersion;
  76. }
  77. }