forked from wuguolin/smartbi2
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
339 B
Java
22 lines
339 B
Java
4 years ago
|
package io.dataease.auth.entity;
|
||
|
|
||
|
import lombok.Builder;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
@Data
|
||
|
@Builder
|
||
|
public class TokenInfo implements Serializable {
|
||
|
|
||
|
private String username;
|
||
|
|
||
|
private Long userId;
|
||
|
|
||
|
/* private String idToken; */
|
||
|
|
||
|
public String format(){
|
||
|
return username + "," +userId;
|
||
|
}
|
||
|
}
|