| | |
| | | logger.info("任务执行详情ID:{} 评价失败,原因:{}", id, reason); |
| | | } |
| | | |
| | | @Override |
| | | public List<OrderTaskExecutionDetail> listCanExcuteTaskDetail(Long clientId, int page, int pageSize) { |
| | | // 获取30分钟以内的订单任务执行详情 |
| | | return orderTaskExecutionDetailMapper.listCanExcuteTaskDetail(clientId, new Date(System.currentTimeMillis() - 1000*60*30L), (long) (page) *pageSize, pageSize); |
| | | } |
| | | |
| | | @Override |
| | | public long countCanExcuteTaskDetail(Long clientId) { |
| | | return orderTaskExecutionDetailMapper.countCanExcuteTaskDetail(clientId, new Date(System.currentTimeMillis() - 1000*60*30L)); |
| | | } |
| | | |
| | | /** |
| | | * 验证订单任务执行详情的必填字段 |
| | | * |