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

com.github.jerryxia.devutil.dataobject.web.response.SimpleResCode Maven / Gradle / Ivy

/**
 * 
 */
package com.github.jerryxia.devutil.dataobject.web.response;

/**
 * @author Administrator
 *
 */
public enum SimpleResCode {

    /**
     * OK
     */
    Ok(0),

    /**
     * Fail
     */
    Fail(1);

    private int value;

    SimpleResCode(int v) {
        this.value = v;
    }

    public int getValue() { 
        return value; 
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy