ITodayScheduleService.java 528 B

123456789101112131415161718192021
  1. package com.xjrsoft.module.schedule.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.schedule.dto.TodaySchedulePageDto;
  4. import com.xjrsoft.module.schedule.entity.TodaySchedule;
  5. import com.xjrsoft.module.schedule.vo.TodayScheduleVo;
  6. import java.util.List;
  7. /**
  8. * @title: 今日安排
  9. * @Author dzx
  10. * @Date: 2025年3月27日
  11. * @Version 1.0
  12. */
  13. public interface ITodayScheduleService extends MPJBaseService<TodaySchedule> {
  14. List<TodayScheduleVo> getList(TodaySchedulePageDto dto);
  15. }