You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
361 B
24 lines
361 B
3 years ago
|
package com.qs.serve.common.config;
|
||
|
|
||
|
|
||
|
import lombok.Getter;
|
||
|
|
||
|
/**
|
||
|
* @Author: YenHex
|
||
|
* @Date: 2021/3/3
|
||
|
* @Version: 1.0
|
||
|
**/
|
||
|
@Getter
|
||
|
public class JwtConfig {
|
||
|
|
||
|
/**
|
||
|
* 单位分钟
|
||
|
*/
|
||
|
private final Integer expire = 60;
|
||
|
|
||
|
private final String iss = "KP_ISS";
|
||
|
|
||
|
private final String secret = "QiShenAa18n9VUcCxaSeSqLtFvsSCaRoVPKtBLaYxB0";
|
||
|
|
||
|
}
|