i4way-dash/.svn/pristine/7e/7eb895eaa308f5675b7b517ceba...

24 lines
485 B
Plaintext

package kr.co.i4way.common.model;
public class KeyValueModelVo {
public String getObjKey() {
return objKey;
}
public void setObjKey(String objKey) {
this.objKey = objKey;
}
public String getObjValue() {
return objValue;
}
public void setObjValue(String objValue) {
this.objValue = objValue;
}
private String objKey;
private String objValue;
@Override
public String toString() {
return "KeyValueModelVo [objKey=" + objKey + ", objValue=" + objValue + "]";
}
}