WebCodeConstants.java 507 Bytes
package com.yanzuoguang.util.contants;

/**
 * WebCodeConstants
 *
 * @author: Kang
 * @time: 2018年06月15日 17:29
 */
public final class WebCodeConstants {

    /**
     * 成功
     */
    public static final String SUCCESS = "00";
    /**
     * 无权限访问
     */
    public static final String NOT_AUTH = "02";
    /**
     * 接口鉴权不通过
     */
    public static final String NOT_LOGIN = "03";
    /**
     * 登录失败
     */
    public static final String LOGIN_FAIL = "04";
}