24 lines
485 B
Plaintext
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 + "]";
|
|
}
|
|
}
|