package com.sinosoft.common.memoryCondition.vo; public class MemoryCon { private String name; private String value; private String type; private String condId; public MemoryCon() { // TODO Auto-generated constructor stub } public MemoryCon(String name, String value, String type, String condId) { super(); this.name = name; this.value = value; this.type = type; this.condId = condId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getCondId() { return condId; } public void setCondId(String condId) { this.condId = condId; } @Override public String toString() { return "MemoryCon [name=" + name + ", value=" + value + ", type=" + type + ", condId=" + condId + "]"; } }