CommonConstant.java 590 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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:";
20 21 22 23 24 25 26 27
    /**
     * 7天,一周
     */
    public static final Integer SEVEN = 7;
    /**
     * 3天
     */
    public static final Integer THREE = 3;
28
}