AdapterDictDetailModel.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package com.yihu.ehr.agModel.adapter;
  2. /**
  3. * Created by AndyCai on 2016/3/15.
  4. */
  5. public class AdapterDictDetailModel {
  6. private Long id;
  7. private Long adapterPlanId;
  8. /**
  9. * 所属标准字典
  10. */
  11. private Long dictId;
  12. /**
  13. * 标准字典项
  14. */
  15. private Long dictEntryId;
  16. /**
  17. * 所属机构字典
  18. */
  19. private Long orgDictSeq;
  20. /**
  21. * 机构字典项
  22. */
  23. private Long orgDictEntrySeq;
  24. /**
  25. * 说明
  26. */
  27. private String description;
  28. public Long getId() {
  29. return id;
  30. }
  31. public void setId(Long id) {
  32. this.id = id;
  33. }
  34. public Long getAdapterPlanId() {
  35. return adapterPlanId;
  36. }
  37. public void setAdapterPlanId(Long adapterPlanId) {
  38. this.adapterPlanId = adapterPlanId;
  39. }
  40. public Long getDictId() {
  41. return dictId;
  42. }
  43. public void setDictId(Long dictId) {
  44. this.dictId = dictId;
  45. }
  46. public Long getDictEntryId() {
  47. return dictEntryId;
  48. }
  49. public void setDictEntryId(Long dictEntryId) {
  50. this.dictEntryId = dictEntryId;
  51. }
  52. public Long getOrgDictSeq() {
  53. return orgDictSeq;
  54. }
  55. public void setOrgDictSeq(Long orgDictSeq) {
  56. this.orgDictSeq = orgDictSeq;
  57. }
  58. public Long getOrgDictEntrySeq() {
  59. return orgDictEntrySeq;
  60. }
  61. public void setOrgDictEntrySeq(Long orgDictEntrySeq) {
  62. this.orgDictEntrySeq = orgDictEntrySeq;
  63. }
  64. public String getDescription() {
  65. return description;
  66. }
  67. public void setDescription(String description) {
  68. this.description = description;
  69. }
  70. }