| | |
| | | import org.jeecg.modules.mdc.vo.MdcDeviceCalendarQueryVo; |
| | | import org.jeecg.modules.mdc.vo.MdcDeviceCalendarVo; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 设备工作日历表 |
| | | * @Author: jeecg-boot |
| | |
| | | public interface MdcDeviceCalendarMapper extends BaseMapper<MdcDeviceCalendar> { |
| | | |
| | | IPage<MdcDeviceCalendarVo> pageList(IPage<MdcDeviceCalendarVo> pageData, @Param("deviceCalendar") MdcDeviceCalendarQueryVo mdcDeviceCalendarQueryVo); |
| | | |
| | | List<MdcDeviceCalendarVo> listByEquipmentAndDate(@Param("equipmentId") String equipmentId, @Param("stringDate") String stringDate); |
| | | |
| | | List<MdcDeviceCalendarVo> findAcquiesceShift(); |
| | | |
| | | } |