`
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package egovframework.msa.sample.token;
|
||||
|
||||
import org.springframework.data.redis.core.RedisHash;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@RedisHash("Token")
|
||||
public class GatewayToken {
|
||||
|
||||
private String username;
|
||||
//private String tokenKey;
|
||||
private String refreshToken;
|
||||
private String regDate;
|
||||
|
||||
private String userNm;
|
||||
private String realWorkDeptCd;
|
||||
private String clsfNm;
|
||||
private String lastCUDdate;
|
||||
}
|
||||
Reference in New Issue
Block a user