You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

31 lines
511 B

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;
}
}