package com.topsail.influxdb.model;
|
|
|
|
public class ParamUnit {
|
|
private int type;
|
|
private int len;
|
|
private String value;
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public int getLen() {
|
|
return len;
|
|
}
|
|
|
|
public void setLen(int len) {
|
|
this.len = len;
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
}
|