package com.qianwen.mdc.collect.mapper.mgr; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import org.apache.ibatis.annotations.Param; import com.qianwen.mdc.collect.dto.CalendarShiftInfoDTO; import com.qianwen.mdc.collect.entity.mgr.ProductionCalendar; public interface CalendarMapper extends BaseMapper { //String getShiftIndexNameByCodeAndYear(@Param("calendarCode") String calendarCode, @Param("year") Integer year, @Param("shiftIndex") Integer shiftIndex, @Param("tenantId") String tenantId); Long t1(); List getCalendarShiftInfo(@Param("calendarCodeList") List calendarCodeList, @Param("year") int year, @Param("dateTime") String dateTime); List getCalendarShiftInfoToday(@Param("calendarCode") String calendarCode, @Param("dateTime") String dateTime); }