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

com.mybatisflex.test.model.Sex Maven / Gradle / Ivy

package com.mybatisflex.test.model;


/**
 * 性别枚举
 * @author luozhan
 */

public enum Sex implements BaseEnum {
    //
    MALE(1),
    FEMALE(2),
    UNKNOWN(0);

    private final int value;

    Sex(Integer value) {
        this.value = value;
    }

    @Override
    public int getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy