Skip to content

Commit

Permalink
[BE] FEAT: ComplexRepositoy 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
enaenen committed Jul 26, 2023
1 parent 892b6f8 commit 22da507
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.ftclub.cabinet.utils.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface ComplexRepository {
Class[] entityClass() default Object[].class;
}

0 comments on commit 22da507

Please sign in to comment.