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

eleme.openapi.sdk.api.enumeration.recruitment.EducationDegreeEnum Maven / Gradle / Ivy

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

public enum EducationDegreeEnum {
    /**
     * 初中
     */
    MIDDLE("MIDDLE"), 
    
    /**
     * 高中
     */
    HIGH("HIGH"), 
    
    /**
     * 大专
     */
    COLLEGE("COLLEGE"), 
    
    /**
     * 本科
     */
    UNDERGRADUATE("UNDERGRADUATE"), 
    
    /**
     * 硕士
     */
    GRADUATE("GRADUATE"), 
    
    /**
     * 博士
     */
    PHD("PHD");
    

    private String recruitmentDesc;
    EducationDegreeEnum(String recruitmentDesc) {
        this.recruitmentDesc = recruitmentDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy