Skip to content

Commit

Permalink
refactor: (#90) redis persistence entity data class
Browse files Browse the repository at this point in the history
  • Loading branch information
khcho0125 committed Oct 13, 2022
1 parent 1c9c12d commit 16ae438
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import javax.validation.constraints.NotNull
* @version 1.0.0
**/
@RedisHash("tbl_authcode")
class AuthCodeEntity(
data class AuthCodeEntity(
@Id
val key: String,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import javax.validation.constraints.NotNull
* @version 1.0.0
**/
@RedisHash("tbl_authcode_limit")
class AuthCodeLimitEntity(
data class AuthCodeLimitEntity(
@Id
val key: String,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import javax.validation.constraints.NotNull
* @version 1.0.0
**/
@RedisHash("tbl_refresh_token")
class RefreshTokenEntity(
data class RefreshTokenEntity(
@Id
val token: String,

Expand Down

0 comments on commit 16ae438

Please sign in to comment.