package com.hdl.photovoltaic.ui.bean;
|
|
import java.io.Serializable;
|
|
public class DeviceAttributeBean implements Serializable {
|
|
|
//属性key
|
private String key;
|
//属性值
|
private String value;
|
|
public String getKey() {
|
return key == null ? "" : key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getValue() {
|
return value == null ? "" : value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
}
|