| 123456789101112131415161718192021 |
- package com.xjrsoft.module.schedule.service;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.schedule.dto.TodaySchedulePageDto;
- import com.xjrsoft.module.schedule.entity.TodaySchedule;
- import com.xjrsoft.module.schedule.vo.TodayScheduleVo;
- import java.util.List;
- /**
- * @title: 今日安排
- * @Author dzx
- * @Date: 2025年3月27日
- * @Version 1.0
- */
- public interface ITodayScheduleService extends MPJBaseService<TodaySchedule> {
- List<TodayScheduleVo> getList(TodaySchedulePageDto dto);
- }
|