master:系统BUG优化;

pull/1121/head
liujiang 2025-09-02 15:30:29 +08:00
parent cfab581c70
commit 8f968281db
2 changed files with 9 additions and 1 deletions

View File

@ -16,6 +16,7 @@ import com.ruoyi.quartz.mapper.SysJobMapper;
import com.ruoyi.quartz.service.ISysJobService;
import com.ruoyi.quartz.util.CronUtils;
import com.ruoyi.quartz.util.ScheduleUtils;
import com.ruoyi.xkt.dto.feedback.FeedbackResDTO;
import lombok.RequiredArgsConstructor;
import org.apache.commons.lang3.StringUtils;
import org.quartz.JobDataMap;
@ -78,7 +79,7 @@ public class SysJobServiceImpl implements ISysJobService {
}
PageHelper.startPage(pageDTO.getPageNum(), pageDTO.getPageSize());
List<SysJob> list = this.jobMapper.selectList(queryWrapper);
return Page.convert(new PageInfo<>(BeanUtil.copyToList(list, JobPageResDTO.class)));
return Page.convert(new PageInfo<>(list), BeanUtil.copyToList(list, JobPageResDTO.class));
}
/**

View File

@ -17,6 +17,13 @@ import java.util.List;
@Repository
public interface StoreProductStatisticsMapper extends BaseMapper<StoreProductStatistics> {
/**
*
*
* @param beginDate
* @param endDate
* @return List<ProductImgSearchCountDTO>
*/
List<ProductImgSearchCountDTO> listProdImgSearchCount(@Param("beginDate") Date beginDate, @Param("endDate") Date endDate);
/**