|
@@ -19,14 +19,14 @@ public interface XxlJobLogDao {
|
|
|
public List<XxlJobLog> pageList(@Param("offset") int offset,
|
|
|
@Param("pagesize") int pagesize,
|
|
|
@Param("jobGroup") long jobGroup,
|
|
|
- @Param("jobId") long jobId,
|
|
|
+ @Param("jobId") int jobId,
|
|
|
@Param("triggerTimeStart") Date triggerTimeStart,
|
|
|
@Param("triggerTimeEnd") Date triggerTimeEnd,
|
|
|
@Param("logStatus") int logStatus);
|
|
|
public int pageListCount(@Param("offset") int offset,
|
|
|
@Param("pagesize") int pagesize,
|
|
|
@Param("jobGroup") long jobGroup,
|
|
|
- @Param("jobId") long jobId,
|
|
|
+ @Param("jobId") int jobId,
|
|
|
@Param("triggerTimeStart") Date triggerTimeStart,
|
|
|
@Param("triggerTimeEnd") Date triggerTimeEnd,
|
|
|
@Param("logStatus") int logStatus);
|
|
@@ -39,13 +39,13 @@ public interface XxlJobLogDao {
|
|
|
|
|
|
public int updateHandleInfo(XxlJobLog xxlJobLog);
|
|
|
|
|
|
- public int delete(@Param("jobId") long jobId);
|
|
|
+ public int delete(@Param("jobId") int jobId);
|
|
|
|
|
|
public Map<String, Object> findLogReport(@Param("from") Date from,
|
|
|
@Param("to") Date to);
|
|
|
|
|
|
public List<Long> findClearLogIds(@Param("jobGroup") long jobGroup,
|
|
|
- @Param("jobId") long jobId,
|
|
|
+ @Param("jobId") int jobId,
|
|
|
@Param("clearBeforeTime") Date clearBeforeTime,
|
|
|
@Param("clearBeforeNum") int clearBeforeNum,
|
|
|
@Param("pagesize") int pagesize);
|
|
@@ -53,7 +53,7 @@ public interface XxlJobLogDao {
|
|
|
|
|
|
public List<Long> findFailJobLogIds(@Param("pagesize") int pagesize);
|
|
|
|
|
|
- public int updateAlarmStatus(@Param("logId") long logId,
|
|
|
+ public int updateAlarmStatus(@Param("logId") int logId,
|
|
|
@Param("oldAlarmStatus") int oldAlarmStatus,
|
|
|
@Param("newAlarmStatus") int newAlarmStatus);
|
|
|
|