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

com.soento.core.enums.DeleteFlag Maven / Gradle / Ivy

package com.soento.core.enums;

/**
 * 删除标志
 *
 * @author soento
 */
public enum DeleteFlag {
    /**
     * 1:未删除
     */
    NOT_DELETED("1"),
    /**
     * 2:已删除
     */
    DELETED("2");

    private final String value;

    private DeleteFlag(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy