cn.hippo4j.common.model.TokenInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hippo4j-common Show documentation
Show all versions of hippo4j-common Show documentation
HIPPO4J、HIPPO4J-CORE 公共代码库.
package cn.hippo4j.common.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Token info.
*
* @author chen.ma
* @date 2021/12/20 20:02
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class TokenInfo {
/**
* accessToken
*/
private String accessToken;
/**
* tokenTtl
*/
private Long tokenTtl;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy