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.
23 lines
366 B
23 lines
366 B
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 = 7;
|
|
|
|
private final String iss = "KP_ISS";
|
|
|
|
private final String secret = "QiShenAa18n9VUcCxaSeSqLtFvsSCaRoVPKtBLaYxB0123456";
|
|
|
|
}
|
|
|