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:";
/** * 7天,一周 */ public static final Integer SEVEN = 7; /** * 3天 */ public static final Integer THREE = 3;
}