|
|
@@ -0,0 +1,12 @@
|
|
|
+package com.uas.platform.b2b.dao;
|
|
|
+
|
|
|
+import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
+import org.springframework.stereotype.Repository;
|
|
|
+
|
|
|
+import com.uas.platform.b2b.model.ReportConfig;
|
|
|
+
|
|
|
+@Repository
|
|
|
+public interface ReportConfigDao extends JpaRepository<ReportConfig, Long> {
|
|
|
+
|
|
|
+ public ReportConfig findReportConfigByEnuuAndPagename(Long enuu, String pagename);
|
|
|
+}
|