RsBrowseModel.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package com.yihu.ehr.agModel.resource;
  2. import org.w3c.dom.stylesheets.LinkStyle;
  3. import java.util.List;
  4. /**
  5. * Created by wq on 2016/6/3.
  6. */
  7. public class RsBrowseModel {
  8. private String code;
  9. private String value;
  10. private String type;
  11. private String dict;
  12. private List<String> colunmCode;
  13. private List<String> colunmName;
  14. private List<String> colunmType;
  15. private List<String> colunmDict;
  16. public String getCode() {
  17. return code;
  18. }
  19. public void setCode(String code) {
  20. this.code = code;
  21. }
  22. public String getValue() {
  23. return value;
  24. }
  25. public void setValue(String value) {
  26. this.value = value;
  27. }
  28. public List<String> getColunmCode() {
  29. return colunmCode;
  30. }
  31. public void setColunmCode(List<String> colunmCode) {
  32. this.colunmCode = colunmCode;
  33. }
  34. public List<String> getColunmName() {
  35. return colunmName;
  36. }
  37. public void setColunmName(List<String> colunmName) {
  38. this.colunmName = colunmName;
  39. }
  40. public List<String> getColunmType() {
  41. return colunmType;
  42. }
  43. public void setColunmType(List<String> colunmType) {
  44. this.colunmType = colunmType;
  45. }
  46. public List<String> getColunmDict() {
  47. return colunmDict;
  48. }
  49. public void setColunmDict(List<String> colunmDict) {
  50. this.colunmDict = colunmDict;
  51. }
  52. public String getType() {
  53. return type;
  54. }
  55. public void setType(String type) {
  56. this.type = type;
  57. }
  58. public String getDict() {
  59. return dict;
  60. }
  61. public void setDict(String dict) {
  62. this.dict = dict;
  63. }
  64. public RsBrowseModel() {
  65. }
  66. public RsBrowseModel(String code, String value) {
  67. this.code = code;
  68. this.value = value;
  69. }
  70. }