|
@@ -13,6 +13,8 @@ public interface LongArticleTitleAuditRepository extends JpaRepository<LongArtic
|
|
|
|
|
|
List<LongArticleTitleAudit> getByStatus(Integer status);
|
|
|
|
|
|
+ List<LongArticleTitleAudit> getByStatusIn(List<Integer> status);
|
|
|
+
|
|
|
List<LongArticleTitleAudit> getByProducePlanIdIsNull();
|
|
|
|
|
|
long countByAuditTimestampBetween(Long start, Long end);
|
|
@@ -21,6 +23,8 @@ public interface LongArticleTitleAuditRepository extends JpaRepository<LongArtic
|
|
|
|
|
|
List<LongArticleTitleAudit> getByStatusAndAuditTimestampBetween(Integer status, Long start, Long end);
|
|
|
|
|
|
+ List<LongArticleTitleAudit> getByStatusInAndAuditTimestampBetween(List<Integer> status, Long start, Long end);
|
|
|
+
|
|
|
List<LongArticleTitleAudit> getByContentIdIn(List<String> sourceIds);
|
|
|
|
|
|
List<LongArticleTitleAudit> getByAuditTimestampBetween(Long start, Long end);
|