|
@@ -31,9 +31,9 @@ public interface XxlJobLogDao {
|
|
@Param("triggerTimeEnd") Date triggerTimeEnd,
|
|
@Param("triggerTimeEnd") Date triggerTimeEnd,
|
|
@Param("logStatus") int logStatus);
|
|
@Param("logStatus") int logStatus);
|
|
|
|
|
|
- public XxlJobLog load(@Param("id") int id);
|
|
|
|
|
|
+ public XxlJobLog load(@Param("id") long id);
|
|
|
|
|
|
- public int save(XxlJobLog xxlJobLog);
|
|
|
|
|
|
+ public long save(XxlJobLog xxlJobLog);
|
|
|
|
|
|
public int updateTriggerInfo(XxlJobLog xxlJobLog);
|
|
public int updateTriggerInfo(XxlJobLog xxlJobLog);
|
|
|
|
|
|
@@ -51,9 +51,9 @@ public interface XxlJobLogDao {
|
|
@Param("clearBeforeTime") Date clearBeforeTime,
|
|
@Param("clearBeforeTime") Date clearBeforeTime,
|
|
@Param("clearBeforeNum") int clearBeforeNum);
|
|
@Param("clearBeforeNum") int clearBeforeNum);
|
|
|
|
|
|
- public List<Integer> findFailJobLogIds(@Param("pagesize") int pagesize);
|
|
|
|
|
|
+ public List<Long> findFailJobLogIds(@Param("pagesize") int pagesize);
|
|
|
|
|
|
- public int updateAlarmStatus(@Param("logId") int logId,
|
|
|
|
|
|
+ public int updateAlarmStatus(@Param("logId") long logId,
|
|
@Param("oldAlarmStatus") int oldAlarmStatus,
|
|
@Param("oldAlarmStatus") int oldAlarmStatus,
|
|
@Param("newAlarmStatus") int newAlarmStatus);
|
|
@Param("newAlarmStatus") int newAlarmStatus);
|
|
|
|
|