WebCodeConstants.java 507 Bytes
Newer Older
yanzg's avatar
yanzg committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
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";
}