78940b915a941400f97cf0f4dec53680355200a9.svn-base 621 B

1234567891011121314151617181920212223242526
  1. package com.xxl.job.admin.dao;
  2. import com.xxl.job.admin.core.model.XxlJobLogReport;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.Date;
  6. import java.util.List;
  7. /**
  8. * job log
  9. * @author xuxueli 2019-11-22
  10. */
  11. @Mapper
  12. public interface XxlJobLogReportDao {
  13. public int save(XxlJobLogReport xxlJobLogReport);
  14. public int update(XxlJobLogReport xxlJobLogReport);
  15. public List<XxlJobLogReport> queryLogReport(@Param("triggerDayFrom") Date triggerDayFrom,
  16. @Param("triggerDayTo") Date triggerDayTo);
  17. public XxlJobLogReport queryLogReportTotal();
  18. }