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

eleme.openapi.sdk.api.enumeration.diagnosis.ODiagnosisProblemLevel Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.enumeration.diagnosis;

public enum ODiagnosisProblemLevel {
    /**
     * 无问题
     */
    NO_PROBLEM("NO_PROBLEM"), 
    
    /**
     * 问题一般
     */
    COMMONLY("COMMONLY"), 
    
    /**
     * 问题严重
     */
    POOR("POOR");
    

    private String diagnosisDesc;
    ODiagnosisProblemLevel(String diagnosisDesc) {
        this.diagnosisDesc = diagnosisDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy