This commit is contained in:
CNERC-SD-010\kyu
2025-02-12 17:01:12 +09:00
parent 507d541a2d
commit 435829e28e
3056 changed files with 3547802 additions and 0 deletions
@@ -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;
}