All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.tair.tairts.params.ExtsStringDataPoint Maven / Gradle / Ivy

package com.aliyun.tair.tairts.params;

public class ExtsStringDataPoint {
    private T skey;
    private T ts;
    private T value;

    public ExtsStringDataPoint(T skey, T ts, T 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 T getValue() {
        return value;
    }

    public void setValue(T value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy