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

com.jd.blockchain.ledger.KVDataVO Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.ledger;

/**
 * @author zhaogw
 * date 2019/5/14 14:17
 */
public class KVDataVO {
    private String key;
    private long[] version;

    public KVDataVO() {
    }

    public KVDataVO(String key, long[] version) {
        this.key = key;
        this.version = version;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public long[] getVersion() {
        return version;
    }

    public void setVersion(long[] version) {
        this.version = version;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy