| | |
| | | package com.xxl.job.admin.service.impl; |
| | | |
| | | import com.xxl.job.admin.core.cron.CronExpression; |
| | | import com.xxl.job.admin.core.model.XxlJobGroup; |
| | | import com.xxl.job.admin.core.model.XxlJobInfo; |
| | | import com.xxl.job.admin.core.cron.CronExpression; |
| | | import com.xxl.job.admin.core.model.XxlJobLogReport; |
| | | import com.xxl.job.admin.core.route.ExecutorRouteStrategyEnum; |
| | | import com.xxl.job.admin.core.thread.JobScheduleHelper; |
| | |
| | | private XxlJobLogGlueDao xxlJobLogGlueDao; |
| | | @Resource |
| | | private XxlJobLogReportDao xxlJobLogReportDao; |
| | | |
| | | |
| | | @Override |
| | | public Map<String, Object> pageList(int start, int length, int jobGroup, int triggerStatus, String jobDesc, String executorHandler, String author) { |
| | | |
| | | // page list |
| | | List<XxlJobInfo> list = xxlJobInfoDao.pageList(start, length, jobGroup, triggerStatus, jobDesc, executorHandler, author); |
| | | int list_count = xxlJobInfoDao.pageListCount(start, length, jobGroup, triggerStatus, jobDesc, executorHandler, author); |
| | | |
| | | |
| | | // package result |
| | | Map<String, Object> maps = new HashMap<String, Object>(); |
| | | maps.put("recordsTotal", list_count); // 总记录数 |