CommonConstant.java 441 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.kwan.springbootkwan.constant;

public class CommonConstant {
    /**
     * 成功
     */
    public static final Integer SC_OK_200 = 200;
    /**
     * 服务器错误
     */
    public static final Integer SC_INTERNAL_SERVER_ERROR_500 = 500;
    /**
     * 未认证
     */
    public static final int SC_JEECG_NO_AUTHZ = 401;
    /**
     * redis前缀
     */
    public static final String PREFIX_REDIS_KEY = "test:";
}