xyz.erupt.monitor.vo.Platform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of erupt-monitor Show documentation
Show all versions of erupt-monitor Show documentation
erupt monitor → redis / server
package xyz.erupt.monitor.vo;
import lombok.Getter;
import lombok.Setter;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* @author YuePeng
* date 2021/1/31 20:09
*/
@Component
@Getter
@Setter
public class Platform {
private String uploadPath;
private String sessionStrategy;
private String eruptVersion;
private int eruptCount; //erupt类数量
private List eruptModules; //模块列表
}