com.duoec.doc.doclet.pojo.entity.RequestParam Maven / Gradle / Ivy
package com.duoec.doc.doclet.pojo.entity;
/**
* @author xuwenzhen
* @date 18/11/23
*/
public class RequestParam {
/**
* 键名
*
* @demo name
*/
private String key;
/**
* 键值
*
* @demo ycoe
*/
private String value;
/**
* 描述
*
* @demo 名称
*/
private String description;
/**
* 是否有效
*
* @demo true
*/
private Boolean available;
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 getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Boolean getAvailable() {
return available;
}
public void setAvailable(Boolean available) {
this.available = available;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy