package com.common.core.constant;
|
|
/**
|
* @author binhuang
|
*/
|
public class GlobalConst {
|
public static final Long TOKEN_EXPIRE = 3600*2L;
|
public static final Long TOKEN_EXPIRE_BUFF = 3600L;
|
public static final Long DATA_EXPIRE = 600L;
|
public static final Long SF_TOKEN_EXPIRE = 3600L;
|
/**
|
* 系统收保护资源redis缓存key
|
*/
|
public static final String TOKEN_KEY = "pipl:token:";
|
public static final String TOKEN_KEY_TMP = "pipl:token:tmp:";
|
public static final String SF_TOKEN_KEY = "pipl:sf:token";
|
public static final String PIPL_UNCONFIRM_LOCK ="pipl:unconfirm:lock:";
|
public static final String PIPL_UNCONFIRM_INSERT ="pipl:unconfirm:insert:";
|
|
public static final String PIPL_UNCONFIRM_UPDATE ="pipl:unconfirm:update:";
|
|
public static final String PIPL_UNCONFIRM_FILE ="pipl:unconfirm:file:";
|
|
}
|