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
366 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 = 7;
3 years ago
private final String iss = "KP_ISS";
private final String secret = "QiShenAa18n9VUcCxaSeSqLtFvsSCaRoVPKtBLaYxB0123456";
3 years ago
}