Files
2026-05-29 10:45:56 +09:00

18 lines
654 B
Plaintext

## --------------------------------------------------
## CONCRETE Repository (@Repository) — "없을 때만" 1회 생성. 재생성해도 보존됨.
## 여기에 커스텀 쿼리 / 메소드를 추가하세요.
## 경로 : telosys-tools.cfg 의 REPO_CONCRETE_PKG
## --------------------------------------------------
#parse("include/init_var_repo.vm")
package ${REPO_CONCRETE_PKG};
import ${REPO_BASE_PKG}.${repoBaseClass};
import org.springframework.stereotype.Repository;
@Repository
public interface ${repoConcreteClass} extends ${repoBaseClass} {
// ================= 커스텀 쿼리 영역 (재생성해도 보존) =================
}