1
0
mirror of https://github.com/chatopera/cosin.git synced 2025-08-05 20:41:34 +08:00

Fix ReportModelRepository

This commit is contained in:
dengchao@xgtl 2020-04-17 11:24:52 +08:00
parent 32d846b782
commit bb4359d36d

View File

@ -24,7 +24,7 @@ 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);