[#44] 매장 기능 도입 #45

Merged
pricelees merged 116 commits from feat/#44 into main 2025-09-20 03:15:06 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 7c967defcc - Show all commits

View File

@ -6,7 +6,7 @@ import roomescape.admin.infrastructure.persistence.Privilege
@Target(AnnotationTarget.FUNCTION) @Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME) @Retention(AnnotationRetention.RUNTIME)
annotation class AdminOnly( annotation class AdminOnly(
val type: AdminType = AdminType.STORE, val type: AdminType = AdminType.ALL,
val privilege: Privilege val privilege: Privilege
) )

View File

@ -17,6 +17,6 @@ data class OperatorInfo(
data class AuditInfo( data class AuditInfo(
val createdAt: LocalDateTime, val createdAt: LocalDateTime,
val createdBy: OperatorInfo, val createdBy: OperatorInfo,
val modifiedAt: LocalDateTime, val updatedAt: LocalDateTime,
val modifiedBy: OperatorInfo, val updatedBy: OperatorInfo,
) )