package com.ctrip.framework.apollo.openapi.dto; import com.ctrip.framework.apollo.common.dto.BaseDTO; public class OpenItemDTO extends BaseDTO { private String key; private String value; private String comment; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }