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

xyz.erupt.monitor.vo.redis.RedisCmdStat Maven / Gradle / Ivy

There is a newer version: 1.12.15
Show newest version
package xyz.erupt.monitor.vo.redis;

import lombok.Getter;
import lombok.Setter;

/**
 * @author YuePeng
 * date 2021/1/31 21:47
 */
@Getter
@Setter
public class RedisCmdStat {
    private String name;

    private String value;

    public RedisCmdStat(String name, String value) {
        this.name = name;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy