- package com.njyunzhi.yunshake.common;
-
- public class Constants {
-
- public final static int STATUS_DELETED = -1;
- public final static int STATUS_READY = 0;
- public final static int STATUS_NORMAL = 1;
-
-
- public static final long JWT_EXPIRE_TIME = 30 * 60;
- public static final byte[] JWT_SECRET = "By lizhiwei @ 2021-11-29 17:49:36".getBytes();
- public static final String JWT_AUTH_HEADER = "X-Authorization-JWT";
- }
|