7b10615e5292eae85ca6a8464b9e73ebb1316114.svn-base 611 B

123456789101112131415161718192021222324252627282930313233
  1. package com.sinosoft.em.baobiao.xianlutingyun.vo;
  2. public class ItemsBean{
  3. private String key;
  4. private String value;
  5. private String timeType;
  6. private String type;
  7. public String getType() {
  8. return type;
  9. }
  10. public void setType(String type) {
  11. this.type = type;
  12. }
  13. public String getTimeType() {
  14. return timeType;
  15. }
  16. public void setTimeType(String timeType) {
  17. this.timeType = timeType;
  18. }
  19. public String getKey() {
  20. return key;
  21. }
  22. public void setKey(String key) {
  23. this.key = key;
  24. }
  25. public String getValue() {
  26. return value;
  27. }
  28. public void setValue(String value) {
  29. this.value = value;
  30. }
  31. }