| | |
| | | import com.ruoyi.framework.mybatis_config.MyBaseMapper; |
| | | import com.ruoyi.performance.dto.PerformanceShiftMapDto; |
| | | import com.ruoyi.performance.pojo.PerformanceShift; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | * @author 江苏鵷雏网络科技有限公司 |
| | | * @since 2024-05-08 09:12:04 |
| | | */ |
| | | @Mapper |
| | | public interface PerformanceShiftMapper extends MyBaseMapper<PerformanceShift> { |
| | | |
| | | IPage<PerformanceShiftMapDto> performanceShiftPage( |
| | | Page<Object> page, |
| | | @Param("time") String time, |
| | | List<PerformanceShiftMapDto> performanceShift( |
| | | @Param("firstDayOfMonth") LocalDate firstDayOfMonth, |
| | | @Param("lastDayOfMonth") LocalDate lastDayOfMonth, |
| | | @Param("userName") String userName, |
| | | @Param("laboratory") String laboratory |
| | | ); |
| | |
| | | @Param("userName") String userName, |
| | | @Param("laboratory") String laboratory); |
| | | |
| | | IPage<Map<String, Object>> performanceShiftYear(@Param("page") Page<Object> page, @Param("time") String time, @Param("userName") String userName, @Param("laboratory") String laboratory); |
| | | List<PerformanceShiftMapDto> performanceShiftYear(@Param("time") String time, @Param("userName") String userName, @Param("laboratory") String laboratory); |
| | | |
| | | List<Map<String, Object>> performanceShiftYearList(@Param("time") String time, @Param("userName") String userName, @Param("laboratory") String laboratory); |
| | | |
| | | List<PerformanceShiftMapDto> performanceShiftList(@Param("time") String time, @Param("userName") String userName, @Param("laboratory") String laboratory); |
| | | |
| | | String seldepLimsId(@Param("depLimsId") int depLimsId); |
| | | |
| | | List<PerformanceShiftMapDto> selectListByWorkTime(@Param("startTime") LocalDateTime startTime,@Param("endTime") LocalDateTime endTime,@Param("keyword") String keyword); |
| | | |
| | | } |