mirror of
https://github.com/chatopera/cosin.git
synced 2025-08-05 20:41:34 +08:00
Fix ReportModelRepository
This commit is contained in:
parent
32d846b782
commit
bb4359d36d
@ -22,12 +22,12 @@ import org.springframework.data.jpa.repository.JpaRepository;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public interface ReportModelRepository extends JpaRepository<ReportModel, String> {
|
public interface ReportModelRepository extends JpaRepository<ReportModel, String> {
|
||||||
ReportModel findByIdAndOrgi(String id, String orgi);
|
ReportModel findByIdAndOrgi(String id, String orgi);
|
||||||
|
|
||||||
ReportModel findById(String id);
|
// ReportModel findById(String id);
|
||||||
|
|
||||||
List<ReportModel> findByOrgiAndReportid(String orgi, String reportid) ;
|
List<ReportModel> findByOrgiAndReportid(String orgi, String reportid);
|
||||||
|
|
||||||
List<ReportModel> findByParentidAndOrgi(String parentid, String orgi);
|
List<ReportModel> findByParentidAndOrgi(String parentid, String orgi);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user