yangys
2024-09-02 a33c33d48c2c16995130b825355b6883be4eb159
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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<ProductionCalendar> {
    //String getShiftIndexNameByCodeAndYear(@Param("calendarCode") String calendarCode, @Param("year") Integer year, @Param("shiftIndex") Integer shiftIndex, @Param("tenantId") String tenantId);
    Long t1();
    
    List<CalendarShiftInfoDTO> getCalendarShiftInfo(@Param("calendarCodeList") List<String> calendarCodeList, @Param("year") int year, @Param("dateTime") String dateTime);
 
    List<CalendarShiftInfoDTO> getCalendarShiftInfoToday(@Param("calendarCode") String calendarCode, @Param("dateTime") String dateTime);
}