70ebe3ae0bc3b6573a9867bb93c00980744dea38.svn-base 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.sinosoft.common.memoryCondition.vo;
  2. public class MemoryCon {
  3. private String name;
  4. private String value;
  5. private String type;
  6. private String condId;
  7. public MemoryCon() {
  8. // TODO Auto-generated constructor stub
  9. }
  10. public MemoryCon(String name, String value, String type, String condId) {
  11. super();
  12. this.name = name;
  13. this.value = value;
  14. this.type = type;
  15. this.condId = condId;
  16. }
  17. public String getName() {
  18. return name;
  19. }
  20. public void setName(String name) {
  21. this.name = name;
  22. }
  23. public String getValue() {
  24. return value;
  25. }
  26. public void setValue(String value) {
  27. this.value = value;
  28. }
  29. public String getType() {
  30. return type;
  31. }
  32. public void setType(String type) {
  33. this.type = type;
  34. }
  35. public String getCondId() {
  36. return condId;
  37. }
  38. public void setCondId(String condId) {
  39. this.condId = condId;
  40. }
  41. @Override
  42. public String toString() {
  43. return "MemoryCon [name=" + name + ", value=" + value + ", type="
  44. + type + ", condId=" + condId + "]";
  45. }
  46. }