
com.hecloud.runtime.common.enums.BaseStatus Maven / Gradle / Ivy
package com.hecloud.runtime.common.enums;
/**
* @author LoveinBJ
*/
public enum BaseStatus {
/**
* 正常
*/
NORMAL("NORMAL"),
/**
* 异常
*/
ABNORMAL("ABNORMAL");
private String name;
BaseStatus(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy