com.aliyun.tair.tairts.params.ExtsDataPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-tairjedis-sdk Show documentation
Show all versions of alibabacloud-tairjedis-sdk Show documentation
Aliyun Tair Redis client for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
package com.aliyun.tair.tairts.params;
public class ExtsDataPoint {
private T skey;
private T ts;
private double value;
public ExtsDataPoint(T skey, T ts, double value) {
this.skey = skey;
this.ts = ts;
this.value = value;
}
public T getSkey() {
return skey;
}
public void setSkey(T skey) {
this.skey = skey;
}
public T getTs() {
return ts;
}
public void setTs(T ts) {
this.ts = ts;
}
public double getValue() {
return value;
}
public void setValue(double value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy