
com.datastax.insight.agent.entity.SettingItem Maven / Gradle / Ivy
package com.datastax.insight.agent.entity;
/**
* Created by huangping on 17-7-28.
*/
public class SettingItem {
private Long settingId;
private String code;
private String value;
public Long getSettingId() {
return settingId;
}
public void setSettingId(Long settingId) {
this.settingId = settingId;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy