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

org.openea.eap.module.system.enums.common.SexEnum Maven / Gradle / Ivy

The newest version!
package org.openea.eap.module.system.enums.common;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * 性别的枚举值
 *
 */
@Getter
@AllArgsConstructor
public enum SexEnum {

    /** 男 */
    MALE(1),
    /** 女 */
    FEMALE(2),
    /* 未知 */
    UNKNOWN(0);

    /**
     * 性别
     */
    private final Integer sex;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy