|
|
|
@ -46,10 +46,12 @@ public interface XxlJobLogDao {
|
|
|
|
|
public List<Map<String, Object>> triggerCountByDay(@Param("from") Date from,
|
|
|
|
|
@Param("to") Date to);
|
|
|
|
|
|
|
|
|
|
public int clearLog(@Param("jobGroup") int jobGroup,
|
|
|
|
|
public List<Long> findClearLogIds(@Param("jobGroup") int jobGroup,
|
|
|
|
|
@Param("jobId") int jobId,
|
|
|
|
|
@Param("clearBeforeTime") Date clearBeforeTime,
|
|
|
|
|
@Param("clearBeforeNum") int clearBeforeNum);
|
|
|
|
|
@Param("clearBeforeNum") int clearBeforeNum,
|
|
|
|
|
@Param("pagesize") int pagesize);
|
|
|
|
|
public int clearLog(@Param("logIds") List<Long> logIds);
|
|
|
|
|
|
|
|
|
|
public List<Long> findFailJobLogIds(@Param("pagesize") int pagesize);
|
|
|
|
|
|
|
|
|
|