| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentDaySchedule; |
| | | import org.jeecg.modules.mdc.vo.MdcEquipmentDayScheduleVo; |
| | | |
| | | public interface IMdcEquipmentDayScheduleService extends IService<MdcEquipmentDaySchedule> { |
| | | IPage<MdcEquipmentDaySchedule> pageList(MdcEquipmentDayScheduleVo mdcEquipmentDayScheduleVo, Page<MdcEquipmentDaySchedule> page); |
| | | } |