提交 | 用户 | 时间
|
e7c126
|
1 |
package com.xxl.job.admin.dao; |
H |
2 |
|
|
3 |
import com.xxl.job.admin.core.model.XxlJobLogGlue; |
|
4 |
import org.apache.ibatis.annotations.Mapper; |
|
5 |
import org.apache.ibatis.annotations.Param; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
|
|
9 |
/** |
|
10 |
* job log for glue |
|
11 |
* @author xuxueli 2016-5-19 18:04:56 |
|
12 |
*/ |
|
13 |
@Mapper |
|
14 |
public interface XxlJobLogGlueDao { |
|
15 |
|
|
16 |
public int save(XxlJobLogGlue xxlJobLogGlue); |
|
17 |
|
|
18 |
public List<XxlJobLogGlue> findByJobId(@Param("jobId") int jobId); |
|
19 |
|
|
20 |
public int removeOld(@Param("jobId") int jobId, @Param("limit") int limit); |
|
21 |
|
|
22 |
public int deleteByJobId(@Param("jobId") int jobId); |
|
23 |
|
|
24 |
} |