潘志宝
5 天以前 7fce3006ecd0b670e33c2d3ba123778e79e2e943
提交 | 用户 | 时间
e7c126 1 package com.xxl.job.admin.dao;
H 2
3 import com.xxl.job.admin.core.model.XxlJobLogReport;
4 import org.apache.ibatis.annotations.Mapper;
5 import org.apache.ibatis.annotations.Param;
6
7 import java.util.Date;
8 import java.util.List;
9
10 /**
11  * job log
12  * @author xuxueli 2019-11-22
13  */
14 @Mapper
15 public interface XxlJobLogReportDao {
16
17     public int save(XxlJobLogReport xxlJobLogReport);
18
19     public int update(XxlJobLogReport xxlJobLogReport);
20
21     public List<XxlJobLogReport> queryLogReport(@Param("triggerDayFrom") Date triggerDayFrom,
22                                                 @Param("triggerDayTo") Date triggerDayTo);
23
24     public XxlJobLogReport queryLogReportTotal();
25
26 }