yangys
2024-10-30 c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.qianwen.smartman.modules.smis.mapper;
 
import java.time.LocalDate;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.qianwen.core.mp.mapper.BladeMapper;
import com.qianwen.smartman.modules.smis.entity.ShiftDetail;
import com.qianwen.smartman.modules.smis.entity.ShiftModel;
import com.qianwen.smartman.modules.smis.vo.ShiftVO;
 
public interface ShiftModelMapper extends BladeMapper<ShiftModel> {
    ShiftVO getShiftDetail(@Param("modelId") Long modelId);
 
    List<ShiftDetail> getShiftIndexNameByTenantId(@Param("tenantId") String tenantId);
 
    ShiftDetail getShiftTime(@Param("tenantId") String tenantId, @Param("shiftIndex") Integer shiftIndex, @Param("year") int year, @Param("localDate") LocalDate localDate, @Param("calendarCode") String calendarCode);
}