| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.dto.PerformanceShiftMapDto; |
| | | import com.yuanchu.mom.mybatis_config.MyBaseMapper; |
| | | import com.yuanchu.mom.pojo.PerformanceShift; |
| | | import org.springframework.data.repository.query.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | * @author 江苏鵷雏网络科技有限公司 |
| | | * @since 2024-05-08 09:12:04 |
| | | */ |
| | | public interface PerformanceShiftMapper extends BaseMapper<PerformanceShift> { |
| | | public interface PerformanceShiftMapper extends MyBaseMapper<PerformanceShift> { |
| | | |
| | | IPage<Map<String, Object>> performanceShiftPage( |
| | | IPage<PerformanceShiftMapDto> performanceShiftPage( |
| | | Page<Object> page, |
| | | @Param("time") String time, |
| | | @Param("userName") String userName, |
| | | @Param("laboratory") String laboratory |
| | | ); |
| | | |
| | | List<Map<String, Object>> performanceShiftYearPage(@Param("time") String time, |
| | | @Param("userName") String userName, |
| | | @Param("laboratory") String laboratory); |
| | | |
| | | IPage<Map<String, Object>> performanceShiftYear(Page<Object> page, String time, String userName, String laboratory); |
| | | |
| | | List<Map<String, Object>> performanceShiftYearList(String time, String userName, String laboratory); |
| | | |
| | | List<PerformanceShiftMapDto> performanceShiftList(String time, String userName, String laboratory); |
| | | |
| | | String seldepLimsId(int depLimsId); |
| | | } |