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

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

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

public enum SexEnum {
    /**
     * 男
     */
    MALE("MALE"), 
    
    /**
     * 女
     */
    FEMALE("FEMALE");
    

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy